@Browse.list? (AREV Specific)
At 17 JUN 1998 12:26:13AM Laura Randall wrote:
Am trying to pass a 'list' of keys created in a subroutine to a window as the active browse list. Having no luck using @browse.list. How do I do this? Arev 3.1
ex.
new_list=1:@vm:2:@vm:3
@browse.list=new_list
catalyst("w","get_emps")
The window appears but no records are displayed.
Thanks,
At 17 JUN 1998 02:13AM Don Bakke wrote:
Laura,
I'm sure there are other ways of doing this, but one simple technique (as long as there are no spaces in your key IDs) is to do the following:
new_list=1:@vm:2:@vm:3
convert @vm to " " in new_list
catalyst("w","get_emps ":new_list)
At 17 JUN 1998 05:10AM Andrew P McAuley wrote:
There are several ways t skin this particular cat but I'd do the following
Convert @Vm To @Fm In KeyListCall Make.List(0, KeyList, "", "")Call Catalyst("W","MYWINDOW")World Leaders in all things RevSoft
At 17 JUN 1998 08:34AM Don Bakke wrote:
I defer to the better solution!
At 17 JUN 1998 01:34PM Laura Randall wrote:
Thanks Andrew, I'll give it a try.