Showing posts with label Tutorial Programming. Show all posts
Showing posts with label Tutorial Programming. Show all posts

Tuesday, August 26, 2014

Running 32bit powershell on a 64bit server from c# - Stack Overflow

It is possible to get a Powershell  to check to see what platform is running: 21 or 64-bit.

if ([System.IntPtr]::Size -eq 8) {'64-bit'} else {'32-bit'}


Running 32bit powershell on a 64bit server from c# - Stack Overflow

Monday, October 29, 2012

SQL Joins - CodeProject

Here is a good article explaining how to use joins in SQL.


SQL Joins - CodeProject

Wednesday, October 6, 2010

Blend PDF with Silverlight - CodeProject

Details & demo project of plumbing works that blend PDF and Silverlight visually with bi-directional data exchange.

Blend PDF with Silverlight - CodeProject