Hello,
I have a form that contains a couple of check boxes, these check boxes control the transparency and tabstop on other text boxes. when I go through the form the first time it works, only tabstopping and changing the text boxes to normal if value =-1 or checked, however, if the text box is ever checked then it disregards the tabstop on the text boxes from that point on. My question is, how can I get my form to react the same each time no matter if the checkbox is checked or not on the previous time. currently my code is as follows:
on click
If me_option= -1 Then
num1.TabStop = True
num2.TabStop = True
Else
option3.TabStop = True
Also, I have a the following in an update button:
Forms![me_data].me_option.Value = False
any help would be appreciated, I have been stuck on this for a while and have tried many many things.
Thanks in advance
I have a form that contains a couple of check boxes, these check boxes control the transparency and tabstop on other text boxes. when I go through the form the first time it works, only tabstopping and changing the text boxes to normal if value =-1 or checked, however, if the text box is ever checked then it disregards the tabstop on the text boxes from that point on. My question is, how can I get my form to react the same each time no matter if the checkbox is checked or not on the previous time. currently my code is as follows:
on click
If me_option= -1 Then
num1.TabStop = True
num2.TabStop = True
Else
option3.TabStop = True
Also, I have a the following in an update button:
Forms![me_data].me_option.Value = False
any help would be appreciated, I have been stuck on this for a while and have tried many many things.
Thanks in advance