Reputation: 3699
Is there a way to get rid of that annoying welcome page when you start the IDE ?
With some former versions you could have done it through the registry but I can find it for Rio. Tried renaming the folder 'welcome page' to something else but then I get the error - page not found. Is there a way to avoid this and just simply get rid of it ?
Upvotes: 16
Views: 10691
Reputation: 119
As already mentioned in answers, simply edit shortcut and add -np switch so it looks like following:
"C:\Program Files (x86)\Embarcadero\Studio\21.0\bin\bds.exe" -pDelphi **-np**
You will no more have Welcome screen.
Upvotes: 1
Reputation: 21
The exact solution is described in the picture. Applies to other versions.
Upvotes: 1
Reputation: 389
Instead of remove it, you could edit the \Welcomepage\en\default.htm and \Welcomepage\css\styles_light.css files to show something more helpful. In mine, I removed the "Get Started", "Upcoming Events" and "YouTube Videos" panels, increased the size of favorites panel, and some other things.
Upvotes: 2
Reputation: 131
Simple way of doing things :"C:\Program Files (x86)\Embarcadero\Studio\20.0\bin\bds.exe" -np -ns
-NP This removes Welcome Page. -NS This removes Starting screen.
Upvotes: 13
Reputation: 3699
This is actually Dave's Nottage suggestion which works quite well without having to meddle with the registry. If he wants he can post the answer. (In the bin folder of Delphi (typically C:\Program Files (x86)\Embarcadero\Studio\20.0\bin for Rio), rename startpageide260.bpl to something else – Dave Nottage ) Example :
Upvotes: 19
Reputation: 7289
Putting an underscore in front of the package description stills works here.
HKEY_CURRENT_USER\Software\Embarcadero\BDS\20.0\Known IDE Packages
Upvotes: 8