NumToString




Public Function CInt(IntValue as Variant) as Integer
If IsNumeric(IntValue) Then
MyCInt = CInt(IntValue)
Else
MyCInt = 0
End If
End Function

When dealing with numerics and strings, be advised of a couple
"gotchas." The Val() function isn't internationally aware and
will cause problems if you have users overseas But you can't
just blindly switch to CLng, CInt, and so on, which are
internationally aware. These functions don't support an empty
string (vbNullString or "") or strings that fail the IsNumeric
test and will raise an error if used as such. Consider wrapping
your own function around these calls to check for an empty
text string before converting:










( numtostring.html )- by Paolo Puglisi - Modifica del 17/12/2023