start_window (OpenInsight Specific)
At 01 DEC 1999 02:01:03PM mary perkins wrote:
I'm trying to use the start_window function it doesn't seem to be working. this is the command
namewin=Start_window("ts_job_orders",",",",") I have this line typed into my subroutine it will not call the ts_job_orders window no window will appear what am I doing wrong.
Thank you in advance
At 01 DEC 1999 02:16PM amcauley@sprezzatura.com onmouseover=window.status=why not click here to send me email?;return(true)", [url=http://www.sprezzatura.com" onMouseOver=window.status=Why not click here to visit our web site?';return(true)]Sprezzatura Group[/url] wrote:
Per the online help (type start_window in the system editor new record box and press F1) You have not specified a parent in param2, a window must have an owner, so if the subroutine is called from a menu item the owner would be the window the menu item was on.
amcauley@sprezzatura.com
World Leaders in all things RevSoft
At 01 DEC 1999 05:20PM Oystein Reigem wrote:
Mary,
<code> namewin=Start_window("ts_job_orders",",",",") </code>
No wonder it doesn't work if that's an exact copy of your function call. Now your function call has three arguments instead of five; the latter two are the string ",". Try
namewin=Start_window("ts_job_orders","","","","")instead.
- Oystein -
At 02 DEC 1999 03:11PM Oystein Reigem wrote:
Mary,
Also - window name must be in uppercase.
- Oystein -