Free Lessons
Courses
Seminars
TechHelp
Fast Tips
Templates
Topic Index
Forum
ABCD
 
Home   Courses   Index   Templates   Seminars   TechHelp   Forums   Help   Contact   Join   Order   Logon  
 
Glossary

New Entries Added Almost Daily!
Click here to get on our Mailing List

   

   Access    Excel    Word    Windows    HTML

 
MS Access

ShellExecute

Using the SHELLEXECUTE Function

In this tutorial you will learn how to use the ShellExecute Function.

You can use the Windows API ShellExecute() function to start the application associated with a given document extension without knowing the name of the associated application.

=ShellExecute( FileToOpen, Params, DefaultDir, ShowHow )

FileToOpen
Params Optional.
DefaultDir Optional.
ShowHow Optional.

In this example we can work with the any program.

The result is the file opening given it's Default Program associated.

VBA

In the Database add a Module, then you could add the following in the Click Event.

	Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
		(ByVal hwnd As Long, ByVal lpszOp As String, _
		ByVal lpszFile As String, ByVal lpszParams As String, _
		ByVal LpszDir As String, ByVal FsShowCmd As Long) _
		As Long

	Public Sub ShellExec(FileToOpen As String, Optional Params As String = "", _
						Optional DefaultDir As String = "", Optional ShowHow As Long = 1)
		
		ShellExecute 0, "OPEN", FileToOpen, Params, DefaultDir, 1
	End Sub
	

In a Form add a COMMAND BUTTON control and rename it "cmdShellExecute", then you could add the following in the Click Event.

	ShellExec Attachment
	

Seminars

Access 2007 Access Imaging | Access 2013 Access Open Other Programs

Search

You can find more about this by searching the website.


Alex Hedley (Avatar) By: Alex Hedley


Click here to sign up for more FREE tips

 

 

 

The following is a paid advertisement
Computer Learning Zone is not responsible for any content shown or offers made by these ads.
 

Learn
 
Access - index
Excel - index
Word - index
Windows - index
PowerPoint - index
Photoshop - index
Visual Basic - index
ASP - index
Seminars
More...
Customers
 
Login
My Account
My Courses
Lost Password
Memberships
Student Databases
Change Email
Info
 
Latest News
New Releases
User Forums
Topic Glossary
Tips & Tricks
Search The Site
Code Vault
Collapse Menus
Help
 
Customer Support
Web Site Tour
FAQs
TechHelp
Consulting Services
About
 
Background
Testimonials
Jobs
Affiliate Program
Richard Rost
Free Lessons
Mailing List
PCResale.NET
Order
 
Video Tutorials
Handbooks
Memberships
Learning Connection
Idiot's Guide to Excel
Volume Discounts
Payment Info
Shipping
Terms of Sale
Contact
 
Contact Info
Support Policy
Mailing Address
Phone Number
Fax Number
Course Survey
Email Richard
[email protected]
Blog RSS Feed    YouTube Channel

LinkedIn
Copyright 2024 by Computer Learning Zone, Amicron, and Richard Rost. All Rights Reserved. Current Time: 3/28/2024 6:10:56 AM. PLT: 0s