04-26-2011, 06:31 AM
(04-26-2011, 03:40 AM)Psycho Mantis™ Wrote: And how about loading the data and displaying it in the textboxes?
To display it in a textbox, using my example you would change
Code:
MessageBox.Show(row.Item("fldTest"))
Code:
TextBox1.Text = row.Item("fldTest")
And without knowing exactly what you need and how you are using the database.. then that is the best I can tell you. Basic SQL you will need:
UPDATE = edit
INSERT = new
SELECT = read
Once you run an UPDATE or INSERT query, the change is made.
I code at http://tech.reboot.pro