Hello All

I'm try to link the help button to a help file using the msgbox function. I don't know what it is but when I press the button nothing happens. The 'OK' Button works fine and I can test for it too. Do I need to do something to make the help button work when using a msgbox? Here is the code that I have so far...

Button click...
Dim oErrors As New MakeSomeErrors()
Try
oErrors.TestDivideException()
Catch ex As MyExceptions
Dim stemp As String
Dim msgResult As New MsgBoxResult()

msgResult = MsgBox(ex.Message, msgBoxStyle.MsgBoxHelp, "Error")
If msgResult = vbMsgBoxHelp Then
MsgBox("Hello")
End If
End Try


Matthew