-
Recent Posts
Archives
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
Categories
Meta
Monthly Archives: May 2012
How to enable Wifi in Windows Server 8 Beta
1. Click Add Roles and Features 2. Click Next. 3. Select Wireless LAN Service.
How to use OpenFileDialog in WPF
There is no OpenFileDialog control in WPF. You have to code to get the dialog. The following example open a file dialog and looking for default extension vhd. privatevoid btnOpenFile_Click(object sender, RoutedEventArgs e) { // Configure open file dialog … Continue reading
Face tracking with Kinect SDK 1.5
Many users out there have been asking how to do face tracking in Xbox Kinect or Windows Kinect. Download the Kinect SDK 1.5 and Kinect Toolkit. You must download the Toolkit because the face tracking sample is in the Toolkit. … Continue reading
Choose a folder using FolderBrowseDialog in WPF
To select folder in WPF is not a control in Toolbox. You can do it with following code. privatevoid btnFolder_Click(object sender, RoutedEventArgs e) { var dialog = new System.Windows.Forms.FolderBrowserDialog(); System.Windows.Forms.DialogResult result = dialog.ShowDialog(); txtXML.Text = dialog.SelectedPath; … Continue reading
How to put double quote (“) in C# string
I am not too sure how other do it but I use @”””” and It works. Try this. staticvoid Main(string[] args) { string strrun = @”””” + “Hello” + @””””; Console.WriteLine(strrun); } You can also download … Continue reading
How to install Windows Server 8 video drive for Lenovo T400
Do not waste your time to download drive from Lenovo web site, it just doesn’t work. I download the Vista driver from here: http://www.pcpitstop.com/drivers/download/ATI~Radeon~HD~3400~Series~.html and it works. I keep a copy of that like me know if you have a … Continue reading
Create Open File Dialog in WPF
1. Create a WPF Project. 2. Add TextBox control named textBox1. 3. Add a Button control named btnOpenFile, text Open Image. 4. Double the button and add the code. 5. Paste the below code. privatevoid button1_Click(object sender, RoutedEventArgs e) { … Continue reading
Install Active Directory Services in Windows Server 8 Beta
You are same as me, the people use dcpromo to install Active Directory Services. Unfortunately you can no longer do that in Windows Server 8 Beta. You will receive a message “The Active Directory Services installation Wizard is relocated in … Continue reading
Encrypt and decrypt data using Cryptography namespace
There is a fantastic example in codeproject to Encrypt and decrypt data using Cryptography namespace. Unfortunately I could not make the downloaded code worked. That is why I copy the code from the site and build a console application. 1. … Continue reading