![]() |
Using VBA to select applications...
I'm trying to write a macro that activates or selects a non microsoft
application that is running but can't quite figure out how to make VBA know which application to select. Any ideas? |
Using VBA to select applications...
what application do you want to call??????????????
" wrote: I'm trying to write a macro that activates or selects a non microsoft application that is running but can't quite figure out how to make VBA know which application to select. Any ideas? |
Using VBA to select applications...
Dennis
Investigate the use of the "Shell" command. Sub Internet_Explorer() Dim taskID As Variant On Error Resume Next taskID = Shell("start iexplore.exe") If Err < 0 Then _ MsgBox "IEXPLORE.EXE is not installed on your machine." End Sub Gord Dibben Excel MVP On 24 Oct 2005 14:54:43 -0700, wrote: I'm trying to write a macro that activates or selects a non microsoft application that is running but can't quite figure out how to make VBA know which application to select. Any ideas? |
Using VBA to select applications...
See the AppActivate statement.
-- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com wrote in message ups.com... I'm trying to write a macro that activates or selects a non microsoft application that is running but can't quite figure out how to make VBA know which application to select. Any ideas? |
All times are GMT +1. The time now is 05:16 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com