Passing a list of keys to Popup (OpenInsight Specific)
At 24 NOV 1997 11:03:04AM Joseph Daley wrote:
How can I pass a list of keys to a popup and have them displayed? I already have an existing popup created and need to be able to pass a delimited list. I know it can be done but haven't figured out how. Any ideas?
Joe
At 24 NOV 1997 11:28AM DSig (SigSolutions) wrote:
If you have a delim'd list of keys and want a popup to work
against then .. simply use make.list to 'push' the list into
an active cursor.
dsig
David Tod Sigafoos ~ SigSolutions
dsig@teleport.com voice: 503-630-8080 cis:70302,77
NOTICE FOR RTI FORUMS: The message above is an answer to a user request and should
be taken as personal opinion only.
Although care was taken to not hurt anyones feelings or impugn the quality of any product, support or idea IF there is an
exception taken please note in detail the offending portion of the note and email me. I will take all notes under advisement.
At 24 NOV 1997 11:55AM Dave Pociu wrote:
If the popup source is Literal Data then you can pass a @VM/@SVM delimited delimited array of literal data by this code:
declare function popup
popup_data='
popup_data=literal_data / ←– this is your @vm/@svm delimited data */
returned_value=popup(@window , popup_data , 'Your_Popup_Name') / Your_Popup_Name is the name of the popup as defined in the UI Interface /
…..
For more info, check the help (Programmer's Reference) on the popup function
Hope this helps
At 24 NOV 1997 03:41PM Cameron Revelation wrote:
Joseph,
Take a look at the Popup_Equates insert record in the SysProcs table. The type for a list of keys is "K" if I remember correctly (instead of "L" for literal data, for example).
Cameron Purdy
Revelation Software
At 24 NOV 1997 04:27PM Joseph wrote:
Thumbs up Cam! Thanks to all who answered.
-Joseph