Quote:>Hello. I have a Adodc that opens a data base in Access and shows the data in a DataGrid that has associate. Then when I modify the data of the Adodc do not
>show the modifications to me in the DataGrid. I have proven putting: - Adodc.Recorset.Update and later Adodc.Refresh - In addition to the previous thing to put
>DataGrid.Refresh. But this does not work. I have obtained that it works changing the Adodc.RecordSource and returning it to put well, but this seems to me a
>shoddy work. Somebody knows like doing it of one more a more normal way? A greeting and thanks beforehand.
If the translation above is correct<G> I believe you need to do a
Set DataGrid.DataSource=ADODC1
After the Update to the adodc,recordset.
If however you are updating data on one ADODC and binding to the grid with another one, then you may be running into the Jet Caching issue where you will
have to wait 3-5 seconds before the updated data will show up on another connection.
Want to know more? Check out the MSDN Library at http://msdn.microsoft.com or the Microsoft Knowledge Base at http://support.microsoft.com
Scot Rose, MCSD
Microsoft Visual Basic Developer Support
This posting is provided AS IS, with no warranties, and confers no rights.