PDA

Click to See Complete Forum and Search --> : To find did hotsync running or not


snip
Feb 10th, 2001, 08:58 AM
hi, I need to write a VB program to check whether the Palm Pilot's HotSync Manager is currently running or not, I try to use findwindowex() like this:

Dim hWin As Long
hWin = findwindowex(0, 0, vbNullString, "Hotsync")
If hWin <> 0 Then
MsgBox "Found !"
Else
MsgBox "Not Found !"
End If

but seem it can't find program minize in the system tray, so which function I should use for this kind of cases? Thank!