Sorry for the cross-posting but I am really stuck in a rut on this one. Any
help greatly appreciated.

From: "Aaron G. Krueger" <agkrueger@imcglobal-bogus.com>
Subject: Email Address Field storage
Date: Tuesday, January 20, 2004 2:55 PM

I am working on a scripted configuration of MS Project 2002 Pro's Project
Server/Collaboration settings. I am getting hung up on one aspect:

email address: I can not for the life of me figure out where this
information is being stored. I have searched the registry as well as the
file system and can find no reference to the test email address I used
during configuration. Microsoft KB yeilded nothing, Google nothing either.

If anyone has any experience with this, please advise.
Thanks

Aaron G Krueger
agkrueger@imcglobal-bogus.com

Re: Cross Post: MS Project 2002 Pro Email Address Field Storage by William

William
Sat Jan 31 10:34:21 CST 2004

Hi Aaron,

Assuming you are just trying to find the e-mail address of a user in the
Project Server database, you get that from MSP_WEB_RESOURCES.

If you are trying to access the e-mail address from the list of resources in
a project's Resource Sheet, that is accessed using VBA. Here is an code
example that searches the entire list of resources in the active project and
displays the e-mail address:

---- COPY BELOW ----
Sub GetEMail()
Dim r As Resource

For Each r In ActiveProject.Resources
MsgBox r.EMailAddress
Next
End Sub
---- END CODE ----

-Bill

--
Bill Raymond
projectnation at hotmail dot com


"Aaron G. Krueger" <agkrueger@imcglobal-bogus.com> wrote in message
news:OkJu$CC4DHA.2428@tk2msftngp13.phx.gbl...
> Sorry for the cross-posting but I am really stuck in a rut on this one.
Any
> help greatly appreciated.
>
> From: "Aaron G. Krueger" <agkrueger@imcglobal-bogus.com>
> Subject: Email Address Field storage
> Date: Tuesday, January 20, 2004 2:55 PM
>
> I am working on a scripted configuration of MS Project 2002 Pro's Project
> Server/Collaboration settings. I am getting hung up on one aspect:
>
> email address: I can not for the life of me figure out where this
> information is being stored. I have searched the registry as well as the
> file system and can find no reference to the test email address I used
> during configuration. Microsoft KB yeilded nothing, Google nothing either.
>
> If anyone has any experience with this, please advise.
> Thanks
>
> Aaron G Krueger
> agkrueger@imcglobal-bogus.com
>
>
>