ŁukaszDe 38 Posted July 10, 2019 Hi, Does anybody know any existing tool with option to disable showing MainForm DFM of project after it open? Thanks. Share this post Link to post
Alexander Elagin 143 Posted July 10, 2019 How about this (in the dpr): Application.ShowMainForm := False; // <-- insert this line Application.Run; Share this post Link to post
ŁukaszDe 38 Posted July 10, 2019 I don't want show MainForm in IDE after open existing project. Share this post Link to post
Attila Kovacs 629 Posted July 10, 2019 Never seen this behavior. Maybe because I have Autosave Project Desktop on? Share this post Link to post
Guest Posted July 10, 2019 What i do: Fiddle with the "Autosave" option. Close all "heavy" forms before closing the project. Not optimal but works for me most times. HTH Share this post Link to post
Uwe Raabe 2057 Posted July 10, 2019 24 minutes ago, Attila Kovacs said: Maybe because I have Autosave Project Desktop on? Habits and expectations differ, so setting this option to ones personal favor is not bad in the first place. There is only one thing to remember when switching that off: The project desktops are opened in the state they were last saved. To solve your problem: switch this option on load a project close all forms close the project switch option off again 1 Share this post Link to post
ŁukaszDe 38 Posted July 10, 2019 Ok, thanks. When I download a source code from SVN/GIT and then open it in IDE then again MainForm will be showed... A better solution would be to have an option for this in any IDETool eg DDevExtension 🙂 Share this post Link to post
David Heffernan 2345 Posted July 10, 2019 This is environmental. The behaviour you describe is not what I encounter. We need to understand your environment and workflow. Share this post Link to post