
*** New to VB6, need some advice. ***
I'm pretty new to VB6 and I would like some advice of someone.
Msg = "Eerst op BEREKENEN klikken!"
Style = vbOKOnly + vbMsgBoxHelpButton
Title = "Hulp bij het programma training."
Help = "Training.chm"
Ctxt = 1000
Response = MsgBox(Msg, Style, Title, Help, Ctxt)
MsgBox Response
TxtGewicht.SetFocus
I'd like to connect the help-button to a file called Training.chm on a
floppy. MSDN tells me that I must add a context but I can not find any
number at all. I tried using 1000 but I'm receiving always the message
'cannot load help'. If I ship this context the help module tells me that
winhelp.exe is not in my path. Although I copied it to the floppy as well.
thanks for any help.
Sound