ramone Posted October 1, 2005 Posted October 1, 2005 hello, how can i bind a group of textboxes to the fields of a datatable with only one record?? i whant they to fill automatically when the datatable is filled and to update the database when changed (vb.net 2003) thank you Quote
Diesel Posted October 7, 2005 Posted October 7, 2005 One record? What the hell is the point of the database? Textboxes have a databindings collection. Use it similar to this: TextBox1.DataBindings.Add(dataTable, row) Quote
Troy_Dot_Net Posted October 12, 2005 Posted October 12, 2005 >One record? What the hell is the point of the database? One example would be to have a data table ("Counter") with one record of one column to track site visits (if you don't have a web page counter). In any case, he said one record in a data table, not one record in the entire database. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.