VBA IsNumeric equivalent?

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
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
 
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
 

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

Back
Top