i would like to load data from my sql7 server in to a grid control then click into a cell and edit the data then save that data back to my sql 7 server can this be done????
Printable View
i would like to load data from my sql7 server in to a grid control then click into a cell and edit the data then save that data back to my sql 7 server can this be done????
There are a few ways to do this.
Probably the simplist is to put a Data control on your form. (Load this with Project|Components Microsoft Data List Controls. Then it will be in your tool box).In the Properties set the data source to your SS7
Then put a DataList (from your tool box) on the form and link DataSource property to the Data control you previously made.
It can be a bit of a nightmare but it does work.
Good Luck