Forms

  • Thread starter Rolando São Marcos
  • Start date
R

Rolando São Marcos

How can i presenting the information that i just introduce in a form1, in
another form2 by clicking a button on form1?

Thanks
 
J

John Vinson

How can i presenting the information that i just introduce in a form1, in
another form2 by clicking a button on form1?

Thanks

Just remember that the data is stored in Tables, not in Forms.

Simply base your second form on a Query or Table containing the data
that you wish to display. Put a command button on form1 using the
command button wizard, to open form2.

If you want form2 to be filtered to display only the record currently
on form1, you'll need to add a bit of code to the wizard-generated
Click event to set the value of stLinkCriteria, e.g.

stLinkCriteria = "[IDfieldname]] = " & Me![IDfieldname]

using the unique primary key field in place of IDfieldname.

John W. Vinson[MVP]
 
Top