Microsoft KB Archive/167137

From BetaArchive Wiki

Article ID: 167137

Article Last Modified on 2/12/2007



APPLIES TO

  • Microsoft Outlook 97 Standard Edition



This article was previously published under Q167137

SUMMARY

This article describes how to use Visual Basic Scripting Edition (VBScript) with Microsoft Outlook 97 to return the current user 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, on the File menu, point to New and click Mail message.
  2. On the message form Tools menu, click "Design Outlook Form" to enter the form design mode.
  3. Click the form (P.2) tab, and on the Form menu, click "Display This Page."
  4. On the Form menu, click "Control Toolbox." Drag the Command Button to the form.

Creating the VBScript to Return the User Name

  1. On the Form menu, click "View Code" to open the VBScript 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 File menu, click Close.
  4. On the form Tools menu, click "Design Outlook 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 97, please see the following articles in the Microsoft Knowledge Base:

166368 OL97: How to Get Help Programming with Outlook

170783 OL97: Q&A: Questions about Customizing or Programming Outlook



Additional query words: OutSol OutSol97

Keywords: kbdswnet2003swept kbhowto kbprogramming KB167137