A
Arild Larsen
hello
I have made custom help in an access aplication(2003).this works excelent
except that the help in Office(access) altso starts and it covers the right
side of the form.I call the help form by checking if key F1 is pushed and
thats why the office help altso starts.
this is the code i use:
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case vbKeyF1
DoCmd.OpenForm "frmHjelp", acNormal, , , acFormEdit,
acWindowNormal, "C:\ProgramFiler\TKD\TKD MEDLEM\Hjelp/Start.htm"
Case Else
End Select
End Sub
Private Sub Form_Load()
Me.KeyPreview = True
End Sub
This is not at all a very dynamic way to do it,working on another way
I
know this can be done by calling an AutoKeys macro, but i'm experiencing
problem in getting this to work on all PC's , so for now i'm stuck with my
solution.So does anyone know a way to disable the office help in 2003.You
may take a lokk at the application at (only Norwegian)
http://tkdmedlem.natkd.no/
MVH
Arild Larsen
I have made custom help in an access aplication(2003).this works excelent
except that the help in Office(access) altso starts and it covers the right
side of the form.I call the help form by checking if key F1 is pushed and
thats why the office help altso starts.
this is the code i use:
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case vbKeyF1
DoCmd.OpenForm "frmHjelp", acNormal, , , acFormEdit,
acWindowNormal, "C:\ProgramFiler\TKD\TKD MEDLEM\Hjelp/Start.htm"
Case Else
End Select
End Sub
Private Sub Form_Load()
Me.KeyPreview = True
End Sub
This is not at all a very dynamic way to do it,working on another way
know this can be done by calling an AutoKeys macro, but i'm experiencing
problem in getting this to work on all PC's , so for now i'm stuck with my
solution.So does anyone know a way to disable the office help in 2003.You
may take a lokk at the application at (only Norwegian)
http://tkdmedlem.natkd.no/
MVH
Arild Larsen