The following code produces the error in the subject line. Am I missing something simple?
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Result As Boolean
Result = InitializeWinIo()
If (Result = False) Then
MsgBox("Whoops ! There is a problem with InitializeWinIo.", vbOKOnly + vbCritical, "VBDumpPhys32")
End If
End Sub
Private Sub submit_button_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles submit_button.Click
Dim PhysVal As Long
Dim Result As Boolean
Result = GetPhysLong(Val("&H" + get_reg.Text()), PhysVal)
ret_val.Clear()
ret_val.AppendText(PhysVal)
ShutdownWinIo()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Result As Boolean
Result = InitializeWinIo()
If (Result = False) Then
MsgBox("Whoops ! There is a problem with InitializeWinIo.", vbOKOnly + vbCritical, "VBDumpPhys32")
End If
End Sub
Private Sub submit_button_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles submit_button.Click
Dim PhysVal As Long
Dim Result As Boolean
Result = GetPhysLong(Val("&H" + get_reg.Text()), PhysVal)
ret_val.Clear()
ret_val.AppendText(PhysVal)
ShutdownWinIo()
End Sub