Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Findwindow API problem ?
Message
From
10/11/1998 10:12:39
Jody Cairns
OAO Technology Solutions
Moncton, New Brunswick, Canada
 
 
To
10/11/1998 09:22:22
Rob Gordon
Xon Digital Communications Ltd.
Dartmouth, Nova Scotia, Canada
General information
Forum:
Visual Basic
Category:
ActiveX controls
Miscellaneous
Thread ID:
00155549
Message ID:
00156127
Views:
48
>I tried changing the declaration to ByRef rather than ByVall .. still no luck .. Im trying to check for another program running. Could you give me an example of code that works ? Much appreciated ...

Try this:

Public Declare Function FindWindow Lib "user32" Alias _
"FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName _
As String) As Long

Dim lHandle As Long
Dim sTitle As String
sTitle = "Universal Thread - Microsoft Internet Explorer"
lHandle = FindWindow(vbNullString, sTitle)


lHandle will equal zero if the window is not found.
sTitle is the exact title of the window you are searching for.

What exactly are you trying to use it for? What window do you want to find?

best

jody
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform