User Control Databinding

  • Thread starter Thread starter Rob Quet
  • Start date Start date
R

Rob Quet

I have made a simple numeric editor.
Now I want to do a databind to it as we do it in
TextBox.Databinding.add(...)

What I have to do for it. I tried few things but nothing works.

Thanks, Rob
 
There are a few good examples of how to create databound controls.
Essentially you look at the DataSource property and when it changes, fill
your control with relavent data.

A google should do the trick for you.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top