OPening a VBA form in outlook

G

Gerry Abbott

I posted this on the general forums, but got no response (it probably should
have been here. )


I'm just getting my head around VBA in outlook, and
have created a form from the VBA project API, within outlook (2000).
I named it and saved the project.

So now how do i open this form from inside Outlook ?
I have looked at the list of forms in the forms list, for the various
categories,
Personal Form library,
Standard Form library, etc,
But i cannot see my newly created form .

Any advice welcome.


Gerry Abbott
 
G

Guest

I'm assuming you mean a User Form, created from the Outlook VBA Editor...

You have to load the from from code (a macro):
(for a User Form named 'frmMyForm')

Load frmMyForm

or

Dim objForm As frmMyForm
Set objForm = New frmMyForm
objForm.Show
 

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

Top