vote up 7 vote down star
1

When debugging I always want Delphi to open my application in the second monitor but it always open in the first one, I know I can save the application placement before closing but I want it to always open in the second monitor when in debug mode.

Is there some way to configure delphi 2009 to do that?

flag

2 Answers

vote up 10 vote down check

Delphi doesn't have his feature.

What I do is to add code to the OnCreate handler of the main form that moves the form to the second monitor if the Delphi-Debugger is attached to the application.

  if (DebugHook <> 0) and (Screen.MonitorCount > 1) then
    Left := Screen.Monitors[1].Left;
link|flag
Ah, you beat me to it ;-) – mghie Dec 17 '08 at 11:54
Exactly what I needed, thanks :) – Fabio Gomes Dec 17 '08 at 11:56
vote up 0 vote down

Similar to my question Start program on a second monitor?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.