Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Par2: How an ABC browse is refreshed 1999-04-19 -- Jim Kane > Can anyone explain how a Browse list can be configured to automatically
> refresh (i.e., update) its contents. I would like to have a Timer event
> cause the data displayed in a Browse window to refresh periodically,
> especially when the window is in the "background."
>
If records are being added or updated by another process, to see them you need to flush
the view then refresh in the timer embed:
flush(Brw1.view)
ThisWindow.Reset(1)
It will be relatively inefficient so if possible define a custom even and post() it to the
browse when it should be refreshed and avoid a timer. Put the above code in the
embed for when that custom event is received rather than on a timer.
Today is December 3, 2024, 12:12 pm This article has been viewed 35218 times.
|
|