VBA IsNumeric equivalent?

G

Guest

In VBA, you can use IsNumeric to return True or False if the value being
tested is numeric. Is there an equivalent to this in VB.NET?
 
C

Cor Ligthert

Joel,
In VBA, you can use IsNumeric to return True or False if the value being
tested is numeric. Is there an equivalent to this in VB.NET?

IsNumeric

I hope this helps,

Cor
 
V

Vishnu-Chivukula

Hi Joel,
IsNumeric returns True if the entire expression is recognized as a number;
otherwise, it returns False

The same can be used.

Happy Coding
 
G

Guest

Cor Ligthert said:
Joel,


IsNumeric

I hope this helps,

Cor

I must not have typed in in right, and had the wrong help menu selected. I
found it now. Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top