DataComponents in Visual C#
-
Hello, I can't find in C# any of data components like dbTextEdit, dbComboBox, dbLookupComboBox, dbRadioButton, dbCheckButton , dbTreeList... My main programm tool is Delphi so I'm very confused about some things in C#. What is solution about this problem. Thank you for answers. Anze /*Sorry about my English*/
-
Hello, I can't find in C# any of data components like dbTextEdit, dbComboBox, dbLookupComboBox, dbRadioButton, dbCheckButton , dbTreeList... My main programm tool is Delphi so I'm very confused about some things in C#. What is solution about this problem. Thank you for answers. Anze /*Sorry about my English*/
Hi, You will find that in .NET TextEdit, ComboBox, etc.. (pretty much every control) support DataBinding, which would get (kind of) the same functionality. (I don't think TreeView support DataBinding). Hope this helps. Andres Manggini. Buenos Aires - Argentina.
-
Hi, You will find that in .NET TextEdit, ComboBox, etc.. (pretty much every control) support DataBinding, which would get (kind of) the same functionality. (I don't think TreeView support DataBinding). Hope this helps. Andres Manggini. Buenos Aires - Argentina.
-
can you write me a small example, or if you know some links to articles about databinding. thank you
Hi, Found this two: http://www.codeproject.com/vb/net/databindingconcepts.asp?target=databinding[^] http://www.codeproject.com/useritems/complexdatabinding.asp?target=databinding#xx464131xx[^] Andres Manggini. Buenos Aires - Argentina.