Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form Validation Question 1

Status
Not open for further replies.

lcutliffe

IS-IT--Management
Dec 1, 2006
30
0
0
US
Hi
Im working on a form in Microsoft Access 2003. This particular form has a combination of about 25 text boxes and combo boxes and two buttons at the bottom. One button leads to another form and I have it disabled when the form loads. I need it to become enabled when all the fields have been filled in the form. I am not sure where to put the code or what method I should use to make this work. Any help would be appreciated.
 
one way in the after update of each text box check
Code:
if me.text1>"" and me.text2>"" and mecombo1>"" ....then

me.button.enabled=true
end if

but rather then check after the update of each (25)controls

have the button enabled and in the onclock event
[/code]
if not (me.text1>"" and me.text2>"" and mecombo1>"" ....) then exit sub
[/code]

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top