Make sure user input is accurate in form?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form that asks for user input. Is there any way that the user can fill out the form with, say, a number (studentID number?) and the name associated with that number becomes visible?

Thanks,

el.
 
drellebee said:
I have a form that asks for user input. Is there any way that the user
can fill out the form with, say, a number (studentID number?) and the name
associated with that number becomes visible?Hi
Yes
you make the student textbox unbound but with row the student table and in
the query builder criteria
= Me.student
in form you make the student textbox
student.visible = false
student.enabled = false
student.tab = false

then when they press enter after inputting in the event procedure:
student.require
student.visible = true
student.enabled = true
student.tab = true

air - may need refinement

hath
Marcelle
 
Back
Top