-
Still need help lads!
Im a vba programmer so Im finding VB script a little weird, could you help me please?
I have a text box, and I want to print a page when the text box reaches 15 charcaters.
I have the print code, so I just need to know how to automate this when the text box is full.
Is it possible?
Cheers, Bazz
-
At the text box change event
If Len(Text1.Text) = 15 then
'Do What u want
-
hi dinesh :)
i wouldnt advise = 15... i would advise >= 15 because if user pastes 16 characters in.... :)
-
Ok what is the Change property?
I've tried,
_change()
_onchange()
and they don't work....the only one that works is
_onclick()
and that's useless...
The code works fine now, please help me with this bit
-
You would put the code in Change, that fires every time anything is copied, pasted, typed, deleted, whatever in the textbox.