| | |
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
![]() |
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?
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?
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
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
Dreamzsportz Online - Want your big break in sports?
Kakkanat Home Stay - Plan your next vacation to India
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
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
Dreamzsportz Online - Want your big break in sports?
Kakkanat Home Stay - Plan your next vacation to India
![]() |
Similar Threads
- Playing .Wav/MIDI files in a Visual Basic Program (Visual Basic 4 / 5 / 6)
- how to get the event when system shuts down in Visual Basic 6.0 (Visual Basic 4 / 5 / 6)
- Creating an OS in visual basic 6.0 (Visual Basic 4 / 5 / 6)
- variable argument list in Visual Basic (Visual Basic 4 / 5 / 6)
- Visual Basic and C++ and Debug and DLLs (Visual Basic 4 / 5 / 6)
Other Threads in the Visual Basic 4 / 5 / 6 Forum
- Previous Thread: help urgent dtp picker control
- Next Thread: Server checker
Views: 2424 | Replies: 2
| Thread Tools | Search this Thread |
Tag cloud for Visual Basic 4 / 5 / 6
* 6 429 2007 access activex add age append application basic beginner birth bmp c++ calculator cd cells.find click client code college column component connection connectionproblemusingvb6usingoledb copy creat ctrl+f data database datareport date delete dissertations dissertationthesis dissertationtopic edit error excel excelmacro file filename form hardware header iamthwee image inboxinvb internetfiledownload keypress label listbox listview liveperson login looping machine microsoft movingranges objectinsert open oracle password prime program prompt range-objects readfile reading record refresh remotesqlserverdatabase report retrieve save search sendbyte sites sort sql sql2008 sqlserver struct subroutine table tags textbox timer urldownloadtofile vb vb6 vb6.0 vba visual visualbasic visualbasic6 web window windows





