Hi,

I've seen that the hotkey F3 is not well defined for the "Find again" menu.

I've made a little change, and this way it works. The changed line is:

   EVT_MENU( $self, $edit->Append( -1,           "&Find Again\tF3"  ),

So the hotkey should be separated by a tab and not included between ( and ).

Also, Control+G didn't work for Goto, but after I changed the following line, it works:

   EVT_MENU( $self, $edit->Append( -1,           "&Goto\tCtrl-G"       ),

Other menus like "New", "Open", "Save" have hotkeys defined and they work fine. Where can I find the default IDs for all types of standard menu items like these?

I think the recommendation is not to use a custom label, but use the default ones when it is possible. Who knows... maybe if the user uses an OS with a different locale than English, those strings might be translated to that language...

Octavian

Reply via email to