Popup Data - Revisited (AREV Specific)
At 17 MAR 2010 07:09:28PM Terry Rainville wrote:
Working with a list of records (Keys)
Brought up in a TABLE mode popup.
Using the @POS variable in to do other routine using F3 key
F3 option beings up record in table attached window
Popup malfunctions losing the rest of the list not yet displayed.
Is there anyway to hold the list together or to revise the list displayed in the original popup.
Or is the only answer to use a 'R' mode with a Display list.
Also where is the list of keys being used in the original popup.
At 18 MAR 2010 12:15PM Dave Harmacek wrote:
The window is clearing your select list created by the TABLE mode of the popup if you are running it in the same level as the popup.
Consider having the routine you run in to EXECUTE the window and that window will be in another level and leave your select alone.
e.g.
have your evaluate @POS and get the key for the window
say your variable is named NEWKEY
in Rbasic: EXECUTE "WINDOW OTHERWINDOW ": NEWKEY
Dave