Delphi new project does not start with form1

So it's just a pet, maybe, but when I start delphi and start a new project, just to test something, I expect it to be form1, unit1, etc. But its launch of new projects in the form of 2. How can I fix it? I suspected that I had found a place for default savings for projects, but I did not. I am using delphi 2007 and windows 7.

+4
source share
1 answer

The default directory for new projects is "RAD Studio / Projects", if the project name is "Project1.dproj" or "Unit1.pas" in this directory, then Delphi will increase the number for one in your case by Unit2.pas. You can override the old files or change the directory (also create a new directory) and save the files under a different name. You can also change the default directory from the drop-down menu: "Tools / Options -" Environment Settings "-" Default Project ".

+8
source

Source: https://habr.com/ru/post/1316544/


All Articles