10

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 ?

Ken White
  • 117,855
  • 13
  • 197
  • 405
user763539
  • 3,021
  • 5
  • 36
  • 85
  • 1
    The [answer to this question](https://stackoverflow.com/a/6345947/62576) may help. The numbers in the file name for Rio are 260. – Ken White Jan 08 '19 at 03:33
  • 1
    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 Jan 08 '19 at 05:06
  • 1
    In case you have installed Delphi for "All Users", deleting the startpageide package in HKCU alone will not help. It will be restored from the HKLM entry with the next IDE start. You have to delete it also from HKLM to really get rid of it. – Uwe Raabe Jan 08 '19 at 08:41
  • @Dave Nottage you can post the answer. – user763539 Jan 23 '19 at 12:06

4 Answers4

11

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 :

enter image description here

user763539
  • 3,021
  • 5
  • 36
  • 85
6

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.

Sick of IT
  • 61
  • 1
  • 1
3

Putting an underscore in front of the package description stills works here.

HKEY_CURRENT_USER\Software\Embarcadero\BDS\20.0\Known IDE Packages

enter image description here

Ref: The Wiert Corner - Delphi packages I have disabled by prefixing their description with an underscore (and why)

Brian
  • 5,365
  • 1
  • 19
  • 23
1

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.

Rodrigo Caetano
  • 369
  • 1
  • 10