Hello.

I have developed a simple VBA user form in project 2010. From within the VBA environment, I can launch the form and I have verified that it works as designed.

Now I would like to provide a simple way to launch that from from Project.

I tried to create the following macro:

[VBA]

Sub AssignDeveloper()

AssignProjectForm.Show

End Sub

[/VBA]

(AssignProjectForm is the name of the form)

However, when I run this macro i get the following error:

Run-Time Error '75':

Can not find the specificed object
The form object is recognized in the VBA editor. I am assuming that I need to provide more context, but I can't figure out how.

Or is there a better method to launch the form?

Thanks,
Craig