Running isnumeric on array textbox (Help needed)
hi, this is what i wrote :Private sub text1_change(index as integer)
Dim A as boolean, b as boolean
for index = 0 to 2
if a = true then msgbox "ok", vbok
if b = true then a = true
if isnumeric(text1(index).text) then
b = false
else : b = true
End if
if text1(index).text = "" then
b = false
End if
Next index
End sub
My form has 3 textboxes in an array. The first box adhere to the above,
i.e. when i type numbers in,it is okie, however any alphabets will result in
error msg.
2nd and 3rd text boxes however displays an error msg wheneva i type anything
in.
Is there something wrong in what i have done?
thanks~!! Rather urgent

