I would like to create a button in access database that when pushed it will open an .exe file. Can this be done and if so how would I go about doing it.
Thank-you and Merry Christmas and Happy New Year.
Cheeco
I would like to create a button in access database that when pushed it will open an .exe file. Can this be done and if so how would I go about doing it.
Thank-you and Merry Christmas and Happy New Year.
Cheeco
in the event click event for the button, call the shell function and your program...
Code:sub btnRun_click() call SHELL ("c:\folder\myprogram.exe",3) end sub
Thank-you for this info. I will try it and get back to you.
That worked great. Thank-you