like this:
File Tools Purchase Sales
How to underline the first word in the file like this.
File
like this:
File Tools Purchase Sales
How to underline the first word in the file like this.
File
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ravi ShekharPosted Jun 19, 2013, 2:41 AM
if you do programmatically go through with amit sir code.
Regards
Ravi
Amit ChoudharyPosted Jun 18, 2013, 3:54 PM
public void SetupMyMenuItem()
{
// Set the caption for the menu item.
menuItem1.Text = "&File";
// Assign a shortcut key.
menuItem1.Shortcut = Shortcut.AltF;
// Make the menu item visible.
menuItem1.Visible = true;
// Display the shortcut key combination.
menuItem1.ShowShortcut = true;
}
but if you're using the properties set them accordingly. In this snippet we're setting
the properties itself.