I need help on the following code in
VB 2005 express. In the following code,
VB only executes the 'second IF' not the 'first IF' statement. I am not sure what I am doing wrong or it is a bug.
Thanks
KCTin
----------------------------------------------------------------
If IsNumeric(textbox1.Text) Then
If Val(textbox1.Text) >= 0 Then
Else
MsgBox("Please enter valid number")
End If
End If
----------------------------------------------------------------