Hello,
I have the following problem : I'm trying to introduce a research feature in my programm, the request to the server is just fine my DataSet's got the correct datas. Despites my grid doesn't update with the new datas in my DataSet.
I tried to refresh the bindingSource, to use the Synchronize methode on the buffer. None worked so far.
Here's the code for the Synchronize attempt :
/*hDs is the Handle of the DataSet*/
hDs:GET-BUFFER-HANDLE("ttCmdeCli"):SYNCHRONIZE ().
And here the code for the Refresh attempt :
/*bsCmdeCli is the bindingSource on the table CmdeCli*/
bsCmdeCli:Refresh().
Hey Patrick,
to refresh the data shown in your Browser you have to reopen the TOP-NAV-QUERY of the DATASET
hDs:TOP-NAV-QUERY (1):QUERY-OPEN ().
And after that refresh the data of the BindingSource by
bsCmdeCli:RefrechAll ().
Hope that helps.
Regards,
Marko
I tried to reopen the query and it now works just fine !
Thanks you Marko for the help.
Regards,
Patrick