How to add the underlined letter for the main toolbar in MDI parent when you press the alt key ?
The same basic concept applies, you need an ampersand in the text of the caption before the letter at which you want the mneumonic to appear.
-Matt
I am using UltraToolbarManager
UltraToolbar1.IsMainMenuBar = True
You need to set the UseMneumonics property on the UltraTabbedMDIManager to True and then make sure that you have an ampersand in the Text of the child form (i.e. childForm.Text="&Test";).