Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Invoke executable 1

Status
Not open for further replies.

lilboi

Programmer
Dec 22, 2003
146
CA
Hey guys,

I am trying to make forms in access, except i have programmed something in VB(found it easier to) and need access to invoke that executable on certain parts of the workflow.

Do I use macro for this? Can any1 shed some light into this?

Thanks,

And Happy Holidays! Merry Christmas!
 
Open any module and search Help for "Shell". The example in Help is:
Code:
' Specifying 1 as the second argument opens the application in 
' normal size and gives it the focus.
Dim RetVal
RetVal = Shell("C:\WINDOWS\CALC.EXE", 1)    ' Run Calculator.

Duane MS Access MVP
[green]Ask a great question, get a great answer.[/green] [red]Ask a vague question, get a vague answer.[/red]
[green]Find out how to get great answers faq219-2884.[/green]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top