vote up 2 vote down star

I've got a timer running in my Delphi MDI application and I'd like to use it to pop up a message if something changes in the background. But I don't want that message to pop up when the the application has a modal dialog in the foreground because the user couldn't do anything about it.

So what I'd like to know is how can I check for the existence of a modal dialog in my application?

flag

74% accept rate

3 Answers

vote up 4 vote down check

You could try with this code:

var
  ActForm: TCustomForm;
begin
  ActForm := Screen.ActiveForm;
  if (ActForm = nil) or not (fsModal in ActForm.FormState) then begin

  end;
end;

I tested with Delphi 4, works for me.

[EDIT]: But you should really think about whether popping up a form and stealing focus is a good idea. It depends on your application, but if a user is currently entering something into an edit field, or doing something with the mouse, then this might break their workflow.

link|flag
Right, in this case the user has the option to not receive pop-ups and the default is set to not. – Peter Turner Nov 13 '08 at 14:19
vote up 2 vote down

Perhaps the solution is to actually pop up a hint which doesn't steal focus. A clickable hint somewhere visible, but not too invasive. Thus, if the user wants to take action they can, or they can finish off what they were doing, then take action. Or perhaps ignore it altogether.

link|flag
Thanks for the comment and I agree. – Peter Turner Nov 12 '08 at 19:40
vote up 2 vote down

Since Delphi 2005 you have a ModalLevel property on TApplication. It counts the number of Modal forms opened in the application.

link|flag
That's cool, come on over and tell my boss to upgrade! – Peter Turner Nov 13 '08 at 14:21

Your Answer

Get an OpenID
or

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