(04-25-2011, 03:24 PM)Psycho Mantis™ Wrote: That worked well. But the functions I need are edit, save and display instead of add and read...
Is there only four values you are dealing with here? Because it would just be a matter of changing the SQL statement to UPDATE the record instead of inserting a new record. And if there is only 4 values you could hard code the values you wish to load and update.
Ex. SQL to change the value at the index 1 might be:
Code:
UPDATE Table1 SET Column1 = 'Value 3' WHERE ID='1';
I code at http://tech.reboot.pro