Active desktops

M

Martin

I am currently in process of designing a slide/webpage in
powerpoint 2002 to act as a active desktop on our network
in school i have completed the hyperlinks and the button
to log off and all the fancy details all i need now is how
to display the current network user on the slide. If
anybody knows how to do this then your knowledge would be
greatly apreciated

Martin
 
S

Steve Rindsberg

Note to Steve:
Remind Glen why string is on finger.

Was I supposed to remind you of something? And what's with the tourniquet?

In VBA:

Msgbox Environ("Username")

So if you had a textbox named "CurrentUser" on slide 1:

ActivePresentation.Slides(1).Shapes("CurrentUser").TextFrame.TextRange.Text
= Environ("Username")

would put the current user's name into the textbox.
 

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