RAD does not prompt for worksapce
When I open RAD it does not prompt for workspace. I verified in Preference=>General=>Startup and shutdown=>Prompt for workspace check 开发者_如何学Cbox is checked. But still it does not prompt while start up. Any ideas how to get RAD to prompt for the workspace?
Thanks
Uma
I am surprised that setting the preferences has not worked.
It always works for me on my eclipse and RAD(and other eclipse based tools like WID).
The file(org.eclipse.ui.ide.prefs) is where these preferences are persisited in teh file system.
Look for this under this directory \configuration.settings\org.eclipse.ui.ide.prefs
I am not showing the entire file here (as that is just a clutter). Look at the SHOW_WORKSPACE_SELECTION_DIALOG and ensure that it's value is true.
MAX_RECENT_WORKSPACES=5
SHOW_WORKSPACE_SELECTION_DIALOG=true
eclipse.preferences.version=1
HTH
Manglu
Short answer : Run RAD as administrator.
Long answer: I faced the same problem on my computer. I believe the issue is that I didn't run RAD as administrator.
Even though eclipse clearly shows that YES, it will prompt me for a workspace, the content of the property file remained : SHOW_WORKSPACE_SELECTION_DIALOG=false
On Windows 7, you need administrator privilege to write files to the "Program Files" directory. This would explain why RAD was never able to overwrite the file with my new preferences.
Running RAD as administrator is how I managed to fix the problem.
Run RAD
Go to Windows -> Preferences -> General -> Startup and Shutdown -> Workspaces
Check the box "Prompt for workspace on startup"
Save your settings and restart RAD
精彩评论