vote up 0 vote down star

here is the code in c# to allow only one decimal point in a textbox..

if textbox5.text.contains(".") && e.keychar="." { e.handled=true }

i have to use it in vb.net 2003 version..how can i use it..it does not allows to use conatins property.. how to do it..

flag
renu, Please choose an accepted answer. ;) – Raithlin Mar 5 at 10:14

1 Answer

vote up 1 vote down

How about using the Text.IndexOf(".") Method instead? If it returns >=0 then you already have a decimal point.

If (textbox5.Text.IndexOf(".") >= 0 And e.KeyChar = ".") Then e.Handled = True
link|flag
thanks alot.....it really worked.. – renu Mar 5 at 8:37
ren, i'm gonna ask you to go ahead and mark this the accepted answer, mkay. – Marcus Mar 5 at 8:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.