I need suggestions for creating a Help system for a Visual Basic Program.

Please support our Visual Basic 4 / 5 / 6 advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Dec 2005
Posts: 109
Reputation: complete is an unknown quantity at this point 
Solved Threads: 0
complete's Avatar
complete complete is offline Offline
Junior Poster

I need suggestions for creating a Help system for a Visual Basic Program.

 
0
  #1
Feb 7th, 2006
I need suggestions for creating a Help system for a Visual Basic Program.

We have a requirement to provide "on-line help" to our Visual Basic program. What I believe they mean is the sort of Help functionality that one normally sees in C++ generated program.

Does anyone have any suggestions?

I have been told that the file type is a .CHM file that the help system uses. Is there a Help Component in Visual Basic?

What I would really like to do is to have the user choose between having the help be displayed in either .CHM or .HTM format. So, is there a web browser component in Visual Basic too?
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 102
Reputation: yni420 is an unknown quantity at this point 
Solved Threads: 0
yni420's Avatar
yni420 yni420 is offline Offline
Junior Poster

Re: I need suggestions for creating a Help system for a Visual Basic Program.

 
0
  #2
Feb 9th, 2006
Online help - HTML
Offline Help - CHM

as for opening html pages.
i remember i have the code somewhere
let me see if i can dig it out.

as for making chm files.
there are lot of softwares out there
just do google search
Creationz Unlimited - Software ,web , forums , graphic work , Logos
Dreamzsportz Online - Want your big break in sports?
Kakkanat Home Stay - Plan your next vacation to India
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 102
Reputation: yni420 is an unknown quantity at this point 
Solved Threads: 0
yni420's Avatar
yni420 yni420 is offline Offline
Junior Poster

Re: I need suggestions for creating a Help system for a Visual Basic Program.

 
0
  #3
Feb 9th, 2006
Got it
here is how you open a webpage in VB-6

First declare

Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long

then just place the code below in the event line menuitem click

yourlink = "www.google.com"
ShellExecute hWnd, "open", "C:\Program Files\Internet Explorer\IEXPLORE.EXE", yourlink, vbNullString, 1

usually by online help there are help pages with search facility placed in the net somewhere
so all you have to do is go to the page there
but should have been developed and uploaded before hand.
using php or asp or whatever

that is how we usually do it
Creationz Unlimited - Software ,web , forums , graphic work , Logos
Dreamzsportz Online - Want your big break in sports?
Kakkanat Home Stay - Plan your next vacation to India
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Visual Basic 4 / 5 / 6 Forum


Views: 2424 | Replies: 2
Thread Tools Search this Thread



Tag cloud for Visual Basic 4 / 5 / 6
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC