Procedure to detect if an application is running

G

Guest

I have the following procedure to detect if an application is running and
registers it:

Sub DetectExcel()
Const WM_USER = 1024
Dim hWnd as Long
hWnd = FindWindow("XLMAIN",0)
If hWnd = 0 Then
Exit Sub
Else
SendMessage hWnd, WM_USER + 18, 0, 0
End If
End Sub

This obviously applies to Excel. How do I accomplish the same thing in terms
of Word?

Thanks,
Bill
 
I

Ivan F Moala

Hi Bill

Try replacing the Excels classname with Words classname:=OpusApp
why do you want to register it this way?

Also shouldn't the 0 be VbNullString ??

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top