Close the relationship window?

  • Thread starter Thread starter Nick 'The database Guy'
  • Start date Start date
N

Nick 'The database Guy'

Hello People,

Is it possible to close the relationship window programmatically?

If so how?

Thanks in advance.

Nick
 
This seems to work:

DoCmd.RunCommand acCmdRelationships
DoCmd.Close

The first line makes sure the Relationships window is open and is the
active window.

Jerry
 
Thanks Jerry,

Works just as it should.

Nick
Jerry said:
This seems to work:

DoCmd.RunCommand acCmdRelationships
DoCmd.Close

The first line makes sure the Relationships window is open and is the
active window.

Jerry
 

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