Who can help me, I want when people click in the menu on help, they recieve an new popup, with a helptekst file. So not one line of text in a msgBox, but multiple lines.
How do i link it, and how can i design it, so it will be opened by click on help button in the menu
1. the function msgbox() supports multiple lines: To change line add & vbCrLf
e.g. msgbox("Hello user." & vbCrLf & "Thanks for purchasing the application!")
2. If you want design/create your own help (Task providing help). Add a new form tin the project named "frmHelp"...problably add a textbox/richtextbox buttons etc. To make it appear at the click event add code:
Code:
Dim myHelpForm As New frmHelp
myHelpForm.Show () ' or .ShowDialog()
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.