how to bind the result of the query to the textbox in c#
-
hello, In my application i am having a textbox amount. I like to bind my textbox with the result of the query i.e. "select sum(amount) from tablename". how i can bind the result of the query to the textbox in windows application. plz,help me in doiing this... Thanks in advance
-
hello, In my application i am having a textbox amount. I like to bind my textbox with the result of the query i.e. "select sum(amount) from tablename". how i can bind the result of the query to the textbox in windows application. plz,help me in doiing this... Thanks in advance
Using Windows Forms controls: Beginning C# - Chapter 13: Using Windows Form Controls[^]
Jeremy Likness Latest Article: Whats in Your Collection? Part 1 of 3: Interfaces Blog: C#er : IMage
-
Using Windows Forms controls: Beginning C# - Chapter 13: Using Windows Form Controls[^]
Jeremy Likness Latest Article: Whats in Your Collection? Part 1 of 3: Interfaces Blog: C#er : IMage
Sir, i like to know how to bind the query to the textbox. plz send me any link regarding this.
-
Using Windows Forms controls: Beginning C# - Chapter 13: Using Windows Form Controls[^]
Jeremy Likness Latest Article: Whats in Your Collection? Part 1 of 3: Interfaces Blog: C#er : IMage
Thank you for sending the link which helps for getting the basics on windows application. and more over i got solution to my query also. textbox1.Text=command.executescalr().tostring() :)