-
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: April 2012
Designing XAML-based apps with Visual Studio
Surprising what VS 11 can do for xaml rather. I am not so fancy on the Blend part but the Visual Studio part. This is basic apply to xaml and not only Metro style. http://channel9.msdn.com/Shows/Visual-Studio-Toolbox/Visual-Studio-Toolbox-Designing-XAML-based-Metro-style-apps-with-Visual-Studio-and-Blend
How to install Windows 8 Server Beta in Virtual Box (the trick)
You might see the error “This 64-bit application couldn’t load because your PC doesn’t have a 64-bit processor“ when you install Windows 8 Server Beta in Virtual Box The is because under the Version in Create New Virtual Machine … Continue reading
How to play mp3 file using HTML 5
Put the following code in aspx page or html page. <html xmlns=”http://www.w3.org/1999/xhtml”> <head runat=”server”> <title></title> </head> <body> <form id=”form1″ runat=”server”> <div> <audio controls=”controls”> <source src=”Wonderland.wma” type=”audio/mpeg” /> Your browser does not support the … Continue reading
How to insert picture into Crystal Report in Web Application
The will be the same as How to insert picture into Crystal Report except you put your crystal into a Webform download the sample and see how it works. You can also download a single solution from … Continue reading
Convert complicated Group by LINQ statement from C# to VB.NET
We have a complicated LINQ statement using group by in C# like the one below. Somehow, to convert to VB.NET it is not as straightforward. var query = (from ProductOrders in db.OrderDetails join SelectedProducts in db.Products on ProductOrders.ProductID … Continue reading
To change security authentication mode for MS SQL Server
1. In SQL Server Management Studio Object Explorer, right-click the server, and then click Properties. Figure 4.1 Open properties for SQL Server 2. On the Security page, under Server authentication, select the SQL Server and Windows Authentication mode, and … Continue reading
How to generate the Create table script in MS SQL Server 2012
The table creation script will be automatically generated at the pane below when adding the column in the table designer.
How to insert picture into Crystal Report
Right click on the Crystal Report page, select Insert then Picture…. Do not use gif. You can also download a single solution from http://skydrive.live.com. The sample file name is CrystalReportsApplication1.rar. My MSN ID is chanmmn@hotmail.com.
Replace the data in Metro Style Grid Application
1. Start VS 11 2. Choose File -> New -> Project… 3. Choose Windows Metro Style then select Grid Application. 4. Copy a new png file to the Assets folder (my one is piano.png). 5. Open SampleDataSource.cs under the … Continue reading
Creating a Movie Database Application in 15 minutes with ASP.NET MVC
I could not remember where I downloaded the sample code for the video “Creating a Movie Database Application in 15 minutes with ASP.NET MVC”. The one that I have downloaded is without delete functionality. I have added the View (Delete) … Continue reading