Quantcast
Channel: Fraction of the Blogosphere » winforms
Browsing all 5 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

Winforms Databinding

Snippets below have been condensed from their original sources for brevity. See references for original articles. Dataset usage: using System; using System.Data; using System.Data.SqlClient; namespace...

View Article



Image may be NSFW.
Clik here to view.

URL Decode in WPF

Crossing from web to forms development you may notice System.Web is not available. You could extract it from the GAC, but would suffer from having to manually update it moving forward. One solution on...

View Article

Image may be NSFW.
Clik here to view.

Change WPF Toolbar and Window Skin

Took me some Googling to come across some good links to help me find exactly what I was looking to do. Hopefully my post gets enough hits that you’ll come across my title sooner rather than later, and...

View Article

Image may be NSFW.
Clik here to view.

Get Selected Item from ListBox in Winforms C# and VB .Net

Iterate through all items: foreach(ListItem item in ListBox1.Items) { if (item.Selected == True) { //item.Value //no to be confused with text //item.Text //text displayed on UI } } Find specific item...

View Article

Image may be NSFW.
Clik here to view.

C# Application Not Responding Issue on Long Running Threads

Undoubtedly many of you have encountered the dreaded “Application Not Responding” message, programmers and non-programmers alike. In general, this is caused by the OS misinterpretation of long delays...

View Article

Browsing all 5 articles
Browse latest View live




Latest Images