Visio2000: Sample Macro to Retrieve the Path to the Visio Executable File (300992)



The information in this article applies to:

  • Microsoft Visio 2000 Enterprise Edition
  • Microsoft Visio 2000 Technical Edition
  • Microsoft Visio 2000 Professional Edition
  • Microsoft Visio 2000 Standard Edition

This article was previously published under Q300992

SUMMARY

This article contains a sample Microsoft Visual Basic for Applications macro (Sub procedure) to retrieve the path to the Visio executable file.

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 Visual Basic for Applications sample code retrieves the complete path for the Visio executable file and displays the result in a message box:
Private Declare Function GetCommandLine Lib "kernel32" Alias _
"GetCommandLineA" () As String

Public Sub VisioExePath()

   Dim visExePath As String
   Dim PathLength As Long
    
   visExePath = Space(255)
   visExePath = GetCommandLine
   PathLength = Len(visExePath) - 4

   MsgBox Mid(visExePath, 2, PathLength)
End Sub
				

REFERENCES

For additional information about how to use the sample code in this article, click the article number below to view the article in the Microsoft Knowledge Base:

277011 Visio2000: How to Run Sample Code from Knowledge Base Articles

For the latest information, hot topics, resources, downloads, and more for the Visio Developer, browse to the following Microsoft Web site:

Modification Type:MinorLast Reviewed:10/11/2006
Keywords:kbdtacode kbhowto KB300992