Underscore and Menu

  • Thread starter Thread starter 011
  • Start date Start date
0

011

Hello, All!

When I create menu in the Form as follows, I don't see underscore character (_) in it. It appears only if I press Alt key. How can I make my menu look like any other "normal" menu?

class MyForm: public Form
{
public MyForm()
{
this->Menu = new MainMenu();
Menu->MenuItems->Add(S"&File");
Menu->MenuItems->Item[0]->MenuItems->Add(S"&Open...", new EventHandler(this, OnFileOpen));
}
<more code>
}

Regards,
011.

Winamp 5.0 (playing): Stratovarius - Dreamspace
 
these are system settings. since win2k the ampersand
will only appear by pressing the alt key. change the
system setting for diplaying it erverytime

should it be 911?
 
Back
Top