Opening access forms from outlook

  • Thread starter קובץ
  • Start date
×

קובץ

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.
 
A

Alex Dybenko

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