Opening access forms from outlook

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

Guest

hello!

I have a form in access. I also have a form that is running in outlook.
I opened the access DB from outlook, and now I want to open the form (in
access).
Does anyone know how to do that?

Thanks,
Yonina.
 
Hi,
if you opened access via automation (set oAccess = createobject(...) ) -
then you can open form using:
oAccess.docmd.openform "myform"
 
Back
Top