Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  Programming Blogs  >  Plain column programming Blog  > 

Plain Column Blog


plaincolumn.blogspot.com
Reference for programming in WPF, C#, SQL and others. Also include some tips for windows and software.
2009-11-26 10:47
If you are looking for a Google Wave invite, just leave a thank you and your e-mail. I will sent it to you. Current invitation left 13 and after it is send, the invitation might take 1 or 2… Read More
2009-11-26 02:36
There is a time where you need to implement a task on another thread to prevent freezing your UI, update your UI when the task is done. For that, you can use BackgroundWorker that is provide… Read More
2009-11-25 09:37
Converting Bitmap to BitmapImage.codeBitmap bmp = GetBitmap(); // Get bitmap from somewhereBitmapImage bi = new BitmapImage();MemoryStream ms = new MemoryStream();bmp.Save(ms, System.Drawing… Read More
2009-11-25 09:31
When you create a WPF application, there is a time when you need to add resources to your application such as image, text file, xml file and etc. When you specify the source for this resourc… Read More
2009-11-25 09:18
When your WPF application start up, there are times when it need to load some data or doing some long running task before your application window is fully loaded. So, splash screen is added… Read More
2009-11-13 17:09
<Peoples>    <People>        <Name Age="26" Gender="M">John</Name>      &nbs&hell…Read More
2006-06-07 11:16
Here are some simple code in C# if you want to select data from your database.ProductIdProductNameDescriptionDataTable dataTable = new DataTable();string connStr = "Data Source=MachineName\S… Read More
2006-06-07 11:16
Most of the time, the event in XAML is assigned to a codebehind functionExample:*.xaml<button click="OnBtnClicked" content="Click Me" height="30" name="btn" width="80"></button>*… Read More
2006-06-07 11:16
C#VB.NetCase sensitiveYesNoSelf reference to current objectthismeNo explicit instance of object neededstaticSharedRefer to base classbaseMyBaseDeclare class that can't be inheritedsealedNotI… Read More
2006-06-07 11:16
If you want to get a notification whenever a folder or any files is changed, .Net Framework provides a class name FileSystemWatcher to ease your coding. It provides an event for any files th… Read More

Share the post

Plain column

×

Subscribe to Plain Column

Get updates delivered right to your inbox!

Thank you for your subscription

×