Hi on my program i have made a menu, i would like a 'Help' tab so when the user selects it, this will link to the 'VB' help menu.
Any ideas on this would be helpful.
Thanks
:thumb:
Printable View
Hi on my program i have made a menu, i would like a 'Help' tab so when the user selects it, this will link to the 'VB' help menu.
Any ideas on this would be helpful.
Thanks
:thumb:
Use this static method ,
VB Code:
Help.ShowHelp(.....)
I've tried that but im getting this error back
Leading '.' or '!' can only appear inside a 'With' statement.
VB Code:
Help.ShowHelp(.....)
Thanks
I don't get it , you mean you put that code within 'With' statement and it makes error ?
i dont understand, on my menu bar i have an exit tab with this code
Me.Close()
i thought u said put Help.ShowHelp(.....) under the menu tab and this would show?
whats a 'With' statement?
Put this code in the menuItem or whatever control , so when the user clicks it , it shows your help file . Also,look at the overloaded versions of this method .Quote:
Originally posted by VBdotnet_newbie
i dont understand, on my menu bar i have an exit tab with this code
Me.Close()
i thought u said put Help.ShowHelp(.....) under the menu tab and this would show?
whats a 'With' statement?
As with 'With' statement , these links explain it :
With statement
Another link