Quote Originally Posted by NeedHelp01
is possible it what I want.
That in the menu sniffing in my title beam shows because
what I now am ugly
I have wanted gladly breach if I click on the titeltekste a menu button come with the text help end if I click that he most show an msgbox or something else whit some text in it.

I hope that I now That is more clear..
Hi,

After reading and rereading, I think you want a form with a menustrip and in that strip you have a toolstripmenuItem with the name HELP.

Here's an example how to use it:

Code:
Private Sub HelpToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HelpToolStripMenuItem.Click
        MsgBox("Your English can only be better")
    End Sub
Wkr,

sparrow1