Two related issues:
1.
I would like to place a button on my form to open the helpfile that was set on form load. I cannot find the syntax for opening the helpfile from a button on a form.
'sets help file on form load
Private Sub Form_Load()
Form.Helpfile = CurrentProject. Path & "\helpfile. chm"
end sub
2.
If a user opens the form that has this helpfile set, the microsoft access help will open if the user clicks F1 prior to clicking on any controls of the form. Is there any way around this so that the set helpfile opens if the user clicks F1 prior to clicking on the form?
1.
I would like to place a button on my form to open the helpfile that was set on form load. I cannot find the syntax for opening the helpfile from a button on a form.
'sets help file on form load
Private Sub Form_Load()
Form.Helpfile = CurrentProject. Path & "\helpfile. chm"
end sub
2.
If a user opens the form that has this helpfile set, the microsoft access help will open if the user clicks F1 prior to clicking on any controls of the form. Is there any way around this so that the set helpfile opens if the user clicks F1 prior to clicking on the form?
Comment