#Stoping WBStartup
04-Nov-93 10:50:38
Sb: #120687-#Stoping WBStartup
Fm: Jim Nangano/SYSOP 76703,4254
To: Steve Setzer 72017,1777
Steve,
I'm not positive that it will work, but you can probably rename the
WBStartup drawer to prevent its contents from being run. Just add the
following lines to the script in which you don't want the startup stuff to
run:
IF EXISTS sys:WBStartup
rename sys:WBStartup sys:WBNoStart
ENDIF
Make sure you place these statements before the LoadWB command. If you
are setting up multiple startups, you'll probably want to "reverse" this
action in the other scripts, by adding the following to them:
IF EXISTS sys:WBNoStart
rename sys:WBNoStart sys:WBStartup
ENDIF
Hope this helps….
– BobR