integer

harry5568

Member
hello...can anybody tell me how to find out if a certain text is an Integer
..of course
If IsInt(TextBox1.Text)=True Then...

is not working..Thanx:sign0085:
 

harry5568

Member
Awrite..Basically
If IsNumber(TextBox1.Text) AND TextBox1.Text = Int(TextBox1.Text) Then...
Works perfectly:sign0060:...Thanks again Erel....Harry
 
Top