Make form current

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

Hi

I have a form which can load Outlook when I click on a button. When Outlook
loads, it remains the current / active screen. How do I make the current
screen go back to the Access form?

Many thanks in advance.

Richard
 
Richard,

If your Access form is open:

DoCmd.SelectObject acForm, "YourFormName"
'(or just close Outlook if don't need it any longer)


Regards/JK
 
Hi JK

Thanks. I'll try it and see.

Richard

JK said:
Richard,

If your Access form is open:

DoCmd.SelectObject acForm, "YourFormName"
'(or just close Outlook if don't need it any longer)


Regards/JK
 
Hi JK

I tried it and it doesn't work. Outlook is still the current screen.

Richard
 

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