Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

link to project

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
i am trying to create a button in access 97 that will open a project 98 file and enter text from access fields in the headers and footers in project.

I am using the following code:


Dim projobj As MSProject.Application
Set projobj = CreateObject("msproject.application")
projobj.FileOpen "C:\Project1.mpp", True
projobj.Visible = True

' change the headers
projobj.FilePageSetupHeader


....




However, using projobj.filepagesetupheader I cannot seem to enter any information automatically. How can i overcome this?
 
I am talking to myself in order to keep my question on the first page, thereby increasing my chances of receiving a response.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top