Jul 19, 2002 #1 qdtb Technical User Mar 14, 2002 12 PR Hi How can I run a Windows program, (example notepad, calculator, etc.,.), with a VBA project.?? Thank You
Hi How can I run a Windows program, (example notepad, calculator, etc.,.), with a VBA project.?? Thank You
Jul 19, 2002 #2 ZOR Technical User Jan 30, 2002 2,963 GB Try going into keyword search on this site, using the keyword Shell. Should find some pointers in that, hope it helps Upvote 0 Downvote
Try going into keyword search on this site, using the keyword Shell. Should find some pointers in that, hope it helps
Jul 20, 2002 #3 zemp Programmer Jan 27, 2002 3,301 CA This code runs the windows calculator. Dim RetVal RetVal = Shell("C:\WINDOWS\CALC.EXE", vbNormalFocus) ' Runs Calculator. Thanks and Good Luck! zemp Upvote 0 Downvote
This code runs the windows calculator. Dim RetVal RetVal = Shell("C:\WINDOWS\CALC.EXE", vbNormalFocus) ' Runs Calculator. Thanks and Good Luck! zemp