Help and Support
 

powered byLive Search

ACC: How to Start Doc with Windows API ShellExecute() Function

Retired KB ArticleThis article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.
Article ID:121157
Last Review:May 6, 2003
Revision:2.0
This article was previously published under Q121157
On This Page

SUMMARY

Advanced: Requires expert coding, interoperability, and multiuser skills.

You can use the Windows application programming interface (API) ShellExecute() function to start the application associated with a given document extension without knowing the name of the associated application. For example, you can start the Microsoft Paintbrush program by passing the file name ARCADE.BMP to the ShellExecute() function.

Back to the top

MORE INFORMATION

The following example demonstrates how to start an application or load a document into its associated application. The Windows API ShellExecute() function is different from the Access Basic Shell() function in that you can pass the ShellExecute() function the name of a document and it will start the associated application and then pass the filename to the application. You can also specify the working directory for the application.

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 Access Basic.
1.Create a new module, and then enter the following lines in the module's Declarations section:
      Option Explicit
						
      Declare Function ShellExecute Lib "SHELL" (ByVal hwnd%, ByVal _
      lpszOp$, ByVal lpszFile$, ByVal lpszParams$, ByVal lpszDir$, _
      ByVal fsShowCmd%) As Integer
      Declare Function GetDesktopWindow Lib "USER" () As Integer
						
2.Create the following procedure in the module:
      Function StartDoc (DocName As String)
         StartDoc = ShellExecute(GetDesktopWindow(), "Open", DocName, _
          "", "C:\", 1)
      End Function
						
3.From the View menu, choose Immediate Window.
4.In the Immediate window, type the following line and then press ENTER:

? StartDoc("ARCADE.BMP")

Note that the function starts the Paintbrush program, which will then load the ARCADE.BMP file.

Back to the top

NOTES


The return value for the StartDoc() function is the same as for the Shell() function. It is the Windows instance value of the application that was started.
The ShellExecute() function returns the value 31 if there is no association for the specified file type or if there is no association for the specified action within the file type. Other error values are:
      Error Value   Meaning
      ----------------------------------------------------------------
           2        The file was not found.
           3        The path was not found.
           8        There was insufficient memory to start the
                    application.
          10        The Windows version was incorrect.
          11        The executable file was invalid. Either it was not
                    a Windows application or there was an error in the
                    .EXE image.
						

Back to the top

REFERENCES

For an example of how to use the Windows application programming interface (API) ShellExecute() function to start the application associated with a given document extension without knowing the name of the associated application in Microsoft Access for Windows 95 version 7.0, please see the following article in the Microsoft Knowledge Base:

148632 (http://support.microsoft.com/kb/148632/EN-US/) ACC: Start Files or Hyperlinks with Windows API ShellExecute()

Microsoft Windows SDK "Programmer's Reference, Volume 2: Functions," pages 901-904

Back to the top


APPLIES TO
Microsoft Access 1.0 Standard Edition
Microsoft Access 1.1 Standard Edition
Microsoft Access 2.0 Standard Edition

Back to the top

Keywords: 
kbhowto kbprogramming KB121157

Back to the top

Article Translations

 

Other Support Options

  • Need More Help?
    Contact a Support professional by E-mail, Online or Phone.
  • Customer Service
    For non-technical assistance with product purchases, subscriptions, online services, events, training courses, corporate sales, piracy issues, and more.
  • Newsgroups
    Pose a question to other users. Discussion groups and Forums about specific Microsoft products, technologies, and services.