Microsoft KB Archive/180765

From BetaArchive Wiki

Article ID: 180765

Article Last Modified on 11/23/2006



APPLIES TO

  • Microsoft Outlook 98 Standard Edition



This article was previously published under Q180765

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 a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site:

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:

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:

180826 OL98: Resources for Custom Forms and Programming

182349 OL98: Questions About Custom Forms and Outlook Solutions



Additional query words: OutSol OutSol98

Keywords: kbhowto kbprogramming KB180765