Link to home
Start Free TrialLog in
Avatar of Brogrim
BrogrimFlag for Ireland

asked on

Execuet a program from a mS Access Command Button

I have a program that I want to execute from within MS Access using a command buttom.

the file location is :

C:\IWAMemDB\Applications\Manager\SOManager.exe
ASKER CERTIFIED SOLUTION
Avatar of mbizup
mbizup
Flag of Kazakhstan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Dim stAppName As String

    stAppName = "c:\full_path\app.exe"
    Call Shell(stAppName, 1)

refer
http://www.dbforums.com/microsoft-access/1658307-possible-run-application-access-2010-a.html
Avatar of Brogrim

ASKER

Thanks