WinForms
Tag details
Welcome to the 'WinForms' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'WinForms'.
Look up
"WinForms"
at The Free Dictionary
Latest blogosphere posts tagged “WinForms”
-
Populating a TreeView Control from a List
MSMVPS.COM —
Authority: 650
This post details first how to build a list containing the data to display in a WinForms TreeView control. Then it demonstrates how to use recursion to populate the TreeView control from the list. [For information on populating a TreeView control from XML, see this link .] First, create a class that will ...4 days ago -
Spell-check OleDb Databases
TuVinhSoft .,JSC —
Authority: 435
IntroductionThis article describes the implementation of C1DBSpellChecker, a utility that performs spell-checking on OleDb databases including SqlServer and Access.After reading this article, you will be able to specify a connection string, and then select a table and one or more string fields on the table to ...1 week ago -
Fun and games with Visual Studio 2010 beta 2
ctodx —
Authority: 118
Well, Houston, it seems we have a problem. The majority — if not all — of our WinForms controls will not work in VS2010 beta 2. To be blunt, there seems to be some serious design flaws. The problem is that VS2010 beta 2 doesn’t generate any code for the ISupportInitialize interface when you drop controls ...1 week ago -
Saving data back to dataset from textboxes
Programmers Heaven Forums RSS Feed —
Authority: 164
Hi, I have texboxes with databindings. How do I save the data from a textbox when the textbox data is amended. Thanks TextBox3.DataBindings.Clear() TextBox4.DataBindings.Clear() MessageBox.Show("ID1 = " & dr("ID1").ToString & ", Barcode = " & dr("Barcode")) Dim dr As DataRow = ...1 week ago -
RichTextBox Styles
MSMVPS.COM —
Authority: 650
If you are building a WinForms application and want to style your text, you may want to use the RichTextBox control instead of the standard TextBox control. This post provides some of the common techniques required to style text in a RichTextBox control. To try out the examples in this post, build a new WinForms ...1 week ago -
Sneak Peek: Drag-n-drop, dialogs, more formats with the rich text editor in WinForms
ctodx —
Authority: 118
Part of a series on the new features appearing in DXperience v2009.3. This time around lets delve into the myriad new features of the XtraRichEdit control. This is going to be a long one, sorry in advance for taxing your broadband connection... First on the (alphabetical) list is drag and drop . Well start off ...2 weeks ago -
The BindingSource-Sort property
Dot Net Facts —
Authority: 400
In this post I present an interesting conclusion about sorting a data source using the BindingSort.Sort property.The test environmentHere is the test application I use for this presentation. Briefly, it contains a DataSet with a Test DataTable, which is the DataSource I will try so sort. Then I bind this DataSource to ...3 weeks ago -
Populating a DataGridView from Xml Data
MSMVPS.COM —
Authority: 650
If you are using XML in a WinForms application you may find the need to display the XML data in a DataGridView. Lets take this XML: CA 1850 Schwarzenegger WI 1848 Doyle ...3 weeks ago