Jump to a specific record?

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

Guest

Hi

When I have opened up my form I want to jump to a specific
record. Is this possible, and how?

Do I have to use some magic RunCommand constants ??
 
If you only want a specific Record in the Form's RecordSource, check the
WhereCondition argument of the OpenForm Method.

If you want the Form's RecordSource to have all rows unfiltered, then use
the OpenArgs argument of the OpenForm Method to pass the value that
identifies the Record you want and use this in the Form_Load (or Form_Open)
Event to navigate to the required Record.

Check Access VB Help on the WhereCondition argument and the OpenArgs
argument odf the OpenForm Method.
 

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