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
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.
World Leaders in all things RevSoft
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 -
Mary,
Also - window name must be in uppercase.
- Oystein -