Access Forms

T

Tarot Dave

Is there a way to work directly with the data that is being typed into a
form? I really don't want to write the data to a table to get to the users
input. I know this can be done but I am not finding any answers as to how.
Everything I have read so far has further confused me.
 
R

Rick Brandt

Tarot said:
Is there a way to work directly with the data that is being typed
into a form? I really don't want to write the data to a table to get
to the users input. I know this can be done but I am not finding any
answers as to how. Everything I have read so far has further confused
me.

Work with it where? In VBA code, and in queries run in the Access interface you
can individually refer to each control on the form.

Forms!FormName!ControlName
 
Top