At 10:13 AM 12/14/2009, you wrote:
We have a main application with all our menu's and forms, but would
like to be able to let some users out to the prompt, other than
creating a second Icon on the desktop for the prompt, I can't find a
way to let them out to the prompt. What am I missing.
Thanks
Dan,
The following will close the RBA file.
CLOSEWINDOW
RETURN
To display the R> Prompt, enable "R> Prompt" under their "Startup Options".
From the main Menu Bar, select "Settings > "Startup Options"
However, if you do not want to alter their startup options, or have the
means to do so, you can use the RRegistry.rbl Plugin from the R:BASE Plugin
Power Pack, to enable/disable this value on the fly.
--to enable the R> Prompt as an R:BASE Turbo V-8 Startup Option
PLUGIN RRegistry.rbl vStartupR+
|WRITE_INT_VALUE|HKCU+
|\Software\R:BASE Technologies\RBG8\Startup Options+
|RPROMPT|1
CLOSEWINDOW
RETURN
--to disable the R> Prompt as an R:BASE Turbo V-8 Startup Option
PLUGIN RRegistry.rbl vStartupR+
|WRITE_INT_VALUE|HKCU+
|\Software\R:BASE Technologies\RBG8\Startup Options+
|RPROMPT|0
John