vote up 2 vote down star

I'm having a rather perplexing problem with the Escape key handler on a dialog box in Borland C++ Builder 5. Are there any other requirements for the Escape key to fire a cancel event (other than those I've listed below)?

  1. The "Cancel" button (a TBitBtn) has its Cancel property set to true.
  2. The "Cancel" button has its Default property set to false.
  3. The "Cancel" button has its modalResult set to mrCancel.

Note: I'm working with an old legacy app that is still being compiled in Borland C++ Builder 5. We have a separate project to replace it - I'm just doing end of life maintenance.

Update

Four months later I've finally stopped scratching my head...it turns out that the parent form for the application had a run-time OnShortCut handler defined. I just needed to disable that for the Esc handler to work on the child dialog.

flag

Check form event handlers -- OnCloseQuery, OnKeyDown and OnKeyPress could all block this. – Craig Stuntz Dec 30 '08 at 17:45

5 Answers

vote up 1 vote down check

You should check all possible ways the cancel event could be blocked:

  1. First of all, check if clicking the cancel button actually closes the form.

  2. Then check if any other button has its Cancel property set to true.

  3. After that check all key event handlers, don't forget the event handlers of the form, especially if you have KeyPreview enabled.

  4. If you still don't find the problem, check if another component has its ShortCut property set to handle the escape key.

  5. Also check if there are any keyboard hooks active.

link|flag
1. yep, works. 2. nope 3. this particular form has no key event handlers defined thanks for the pointers – Will Bickford Jan 2 '09 at 2:27
vote up 1 vote down

Also keep in mind that the dialog needs to be invoked via ShowModal() rather than just Show(). For example, if your form is named "FAskDialog" then the code that displays it should be like

FAskDialog->ShowModal();

rather than

FAskDialog->Show();

If the dialog is invoked via Show(), then hitting a cancel key or setting ModalResult = mrCancel will NOT cause the dialog to close.

link|flag
Checked this too - ShowModal is being used unfortunately. Thanks though. – Will Bickford Feb 2 at 17:19
vote up 0 vote down

Is there a "CanClose" type event with logic preventing it from closing?

link|flag
vote up 1 vote down

You can also create another dialog, add Cancel button into it and see if the Escape key works. Then compare the DFM source of both forms and check the differences in settings.

link|flag
vote up 1 vote down

It may be that the Form's KeyPreview property has been set to true. This is where the Escape key is often/likely to have been disabled. The KeyPreview property is is also often enabled to capture [Return] key press (I.e. OnKeyPress) to advance to the next field rather than closing the form.

link|flag
I'll check this out tomorrow when I'm back @ work. Thanks. – Will Bickford Jan 2 '09 at 2:28

Your Answer

Get an OpenID
or

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