Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Does anyone have any VBA code to test if Lotus Notes application is running
TI |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Have a look at the FindWindow API call.
I do not have Lotus Notes: if its caption is not volatile or its class is known, FindWindow will return its handle. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this:
Sub LotusNotes_Running() Application.ScreenUpdating = False On Error Resume Next AppActivate "Lotus Notes" If Not Err.Number = 0 Then Err.Clear MsgBox "Notes is Not Running", vbInformation Else 'your code to run here is Notes is open End If End Sub Regards AJ -- Message posted from http://www.ExcelForum.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SendMail via Lotus Notes | Excel Discussion (Misc queries) | |||
Open Lotus Notes with Excel Macro | Excel Discussion (Misc queries) | |||
Lotus Notes | Excel Discussion (Misc queries) | |||
open lotus notes | Excel Worksheet Functions | |||
E-mail using Lotus Notes | Excel Programming |