How to update data environment vb6

Asked By 20 points N/A Posted on -
qa-featured

Hello Experts,

I connected the DataGrid to a DataEnvironment. I am facing a problem in updating. When I refresh the DataGrid It doesn’t shows changing which I made in under laying record set. I don’t know why this problem is occurs, Please tell me how to update data environment vb6.

SHARE
Answered By 0 points N/A #179340

How to update data environment vb6

qa-featured

Hello Madison,

 

You didn't specify what database and what method are you using so I will give you the common way to do it.

– As soon as you made the changes in the system, did the changes reflect in the database? If so then you can remove all the files listed in the DataGrid and Upload it again.

– If you are using ADODC then you will have a hard time doing it because in ADODC the database is always open. It is advisable to use ADODB because you can freely open the database and close it so the changes can be saved once the function is done.

– The speed of your computer can also affect the refreshing of the DataGrid. If your computer is slow then chances are the changes doesn't reflect the data instantaneously inside the DataGrid.

Hope this helps.

Related Questions