Hi
I have 3 textboxes on my form named tbox1,tbox2 and tbox3.
tbox1 and tbox2 have the multiline property set to false.
tbox3 has the multiline property set to true.
I tab down thru the textboxes not changing anything in the textboxes. I'm able to tab thru tbox1 & tbox2 without triggering the change event, but when I tab into tbox3 the change event is triggered.
I cleared the textboxes using tbox1 = "" tbox2 = ""
tbox3 = "" before tabing thru them
When I check the value of tbox3 at runtime the value is
chr(13) & chr(13) ( " 2 square boxes " )
I tried clearing tbox3 using tbox3 = chr(13) & chr(13) instead of tbox3 = "" but the change event was still triggered.
Is there a way to clear tbox3 that will stop it from having the change event triggered when I tab thru it or is there a way to deal with this action.
Thanks
Mike
I have 3 textboxes on my form named tbox1,tbox2 and tbox3.
tbox1 and tbox2 have the multiline property set to false.
tbox3 has the multiline property set to true.
I tab down thru the textboxes not changing anything in the textboxes. I'm able to tab thru tbox1 & tbox2 without triggering the change event, but when I tab into tbox3 the change event is triggered.
I cleared the textboxes using tbox1 = "" tbox2 = ""
tbox3 = "" before tabing thru them
When I check the value of tbox3 at runtime the value is
chr(13) & chr(13) ( " 2 square boxes " )
I tried clearing tbox3 using tbox3 = chr(13) & chr(13) instead of tbox3 = "" but the change event was still triggered.
Is there a way to clear tbox3 that will stop it from having the change event triggered when I tab thru it or is there a way to deal with this action.
Thanks
Mike