Hello,
Is there anything wrong with IsNumeric() function in VB6.
Isnumeric() is used in many applications of our company. It seems not working properly.
For example, 181D59 is not a numeric,when isnumeric(181D59) returns true, it is causing problem to our application.
For example, the messagebox of "yes" will popup and that is not right (it is just an example, the code is not like this in our application)
Anybody has encountered such a problem ? is there any patch to fix it ? Thanks
=========================================================
Private Sub Form_Load()
Dim a As Variant
a = "181D59"
If IsNumeric(a) Then
MsgBox "yes"
Else
MsgBox "NO"
End If
End Sub
Is there anything wrong with IsNumeric() function in VB6.
Isnumeric() is used in many applications of our company. It seems not working properly.
For example, 181D59 is not a numeric,when isnumeric(181D59) returns true, it is causing problem to our application.
For example, the messagebox of "yes" will popup and that is not right (it is just an example, the code is not like this in our application)
Anybody has encountered such a problem ? is there any patch to fix it ? Thanks
=========================================================
Private Sub Form_Load()
Dim a As Variant
a = "181D59"
If IsNumeric(a) Then
MsgBox "yes"
Else
MsgBox "NO"
End If
End Sub