Click here to Skip to main content
15,907,326 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have created one project in that i want to help option and when user clicks it it has to show contents similar to help that is present in notepad, it should contain images and hyperlinks also. which control and how i have to use it?

What I have tried:

///I tried adding messagebox
Dim s as image
s=Image.FromFile("D:\Users\sli\Downloads\help.jpg")
messagebox.show(s,"hello")
Posted
Updated 7-Mar-17 1:37am

 
Share this answer
 
Since you are using MessageBox, I'll assume this is a Windows Forms app or similar.
You need to create a form to display the help information: probably the simplest way (if you want different info for different forms) would be to create a new form and drop a webbrowser control onto it. then use Word, LibreOffice, or your favorite word processor to create the help data as HTML files (that's pretty much just a case of saving it as HTML instead of DOCX). Use the WebBrowser.Navigate method to open the HTML file, and it'll do it all for you.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900