PDA

View Full Version : Launch a User form from Project



csalyers
06-24-2011, 12:49 PM
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:



Sub AssignDeveloper()

AssignProjectForm.Show

End Sub



(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. :banghead:

Or is there a better method to launch the form?

Thanks,
Craig