Jumping to a record in a browse list (AREV Specific)
At 17 SEP 2002 11:21:54AM Mike O'Neal wrote:
Hello all:
Is there a way to get to a specific record in a browse list in an entry window? For example, let's say you are on record 25 and you want to go to record 50. (with 50 being the sequential number, not the actual record key).
TIA,
Mike O.
At 17 SEP 2002 11:37AM Jenna Pederson wrote:
You can hit CTRL-G (goto line) and the line number.
At 17 SEP 2002 02:55PM Warren wrote:
You would have to manipulate WC_RING_PTR%, WC_ID_NEXT% and WC_NEW_ID% in WINDOW_COMMON, probably with a softkey call to a commuter module.
You can always do a control-I which displays the browse list and delete all the entries prior to the key you want (e.g. delete values 1 thru 49 in the list) then F-9 the changes. This modifies the current browse list, but won't allow you to go back as the list will have been reduced by the first 49 items.
At 17 SEP 2002 07:36PM Warren wrote:
That should be alt-I, not control-I to edit the browse list. Sorry.
At 18 SEP 2002 07:34AM Cameron Christie wrote:
I've done this occasionally, usually via a softkey which builds a popup which allows the user to choose which row they want to go to. With such a browse list already active, the minimalist solution using WINDOW_COMMON% variables is :
WC_Ring_Next%=25 ;* Or whatever position they -or you- choose
WC_Reset%=4 ;* Needed if you've gotten here via a softkey call.