OL98: VBScript Example Returns the Current User Name

ID: Q180765

The information in this article applies to:

SUMMARY

This article describes how to use Microsoft Visual Basic Scripting Edition (VBScript) with Microsoft Outlook 98 to return the current user's name.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft Support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/supportnet/refguide/default.asp

The following example uses a message form, one command button, and a message box to return the current user's name.

Creating the Form and CommandButton Control

1. From the Inbox, point to New on the File menu, and then click Mail

   Message.

2. On the message form Tools menu, point to Forms, and click "Design This
   Form" to enter the form design mode.

3. Click the form's (P.2) tab, and on the Form menu, click "Display
   This Page."

4. On the Form menu, click "Control Toolbox." Drag the CommandButton
   to the form.

Creating the VBScript to Return the User Name

1. On the Form menu, click "View Code" to open the Script Editor.

   NOTE: In the following sample code, an underscore (_) at the end of a
   line is used as a line-continuation character. Remove the underscore
   from the end of the line when re-creating this code in VBScript.

2. Type the following code into the editor window:

      ' Sub routine that runs when you click CommandButton1.
      Sub CommandButton1_Click()
         ' Message box that returns the current user's name.
         MsgBox "The current user is " & _
            Application.GetNameSpace("MAPI").CurrentUser
      End Sub

3. On the Script Editor's File menu, click Close.

4. On the form's Form menu, click "Run This Form" to exit the form

   design mode.

If you click CommandButton1, you will see a message box that contains the current user's name.

REFERENCES

For more information about creating solutions with Microsoft Outlook 98, please see the following articles in the Microsoft Knowledge Base:

   Article-ID: Q180826
   Title     : OL98: Resources for Custom Forms and Programming

   Article-ID: Q182349
   Title     : OL98: Questions About Custom Forms and Outlook Solutions

Additional query words: OutSol OutSol98

Keywords          : OffVBS 
Version           : WINDOWS:98
Platform          : WINDOWS
Issue type        : kbhowto

Last Reviewed: May 17, 1999