Goodbye procedure editor??

Hi all,
I have a shortcut to prowin 32 on my desktop that looks something like ...:
C:\PROGRESS\bin\prowin32.exe" -p c:\clients\src\w_main.w -db c:\clients\db\clients.db -1
however when I close the running program it pops up a blank procedure editor window. This is annoying and will be unproffessional if/when I deploy my app. How do I stop this?
Cheers.Regards,
 

Dirky

New Member
mpowell_esq said:
Hi all,
I have a shortcut to prowin 32 on my desktop that looks something like ...:
C:\PROGRESS\bin\prowin32.exe" -p c:\clients\src\w_main.w -db c:\clients\db\clients.db -1
however when I close the running program it pops up a blank procedure editor window. This is annoying and will be unproffessional if/when I deploy my app. How do I stop this?
Cheers.Regards,
Try the 'QUIT' statement...
If you where to use it in the last line of your .w code, i assume this would automatically stop the session, and return to the command prompt/windows
 

nborshukov

New Member
Do ONE of next two:

1. Place an empty procedure called "_edit.p" in your working directory.

OR

2. On clients machine use -rr parameter.
 

vinod_home

Member
Hi,

When you deploy your apps, I dont think you want to mention the startup program name, database name and stuff on your shortcut. I think it would be better if you created a .pf file and put all those inside it, for your editor problem, use -rr parameter inside the .pf file and vola you have no editor poping up.

HTH
V

nborshukov said:
Do ONE of next two:

1. Place an empty procedure called "_edit.p" in your working directory.

OR

2. On clients machine use -rr parameter.
 
Top