Forms

  • Thread starter Thread starter Rolando São Marcos
  • Start date 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
 
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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top