I've tested the code and it works -- the Notes client window comes into focus.
Private Declare Function FindWindow Lib
"user32" Alias "FindWindowA"
(ByVal lpClassName As String,
ByVal lpWindowName As String) As Long
Private Declare Function
SetForegroundWindow Lib "user32"
(ByVal hwnd As Long) As Long
Private Sub Command1_Click()
Dim lHandle As Long
lHandle = FindWindow("NOTES", vbNullString)
'Set this window to the foreground
lHandle = SetForegroundWindow(lHandle)
End Sub
Do you have comments on this tip? Let us know.
This tip was submitted to the SearchDomino.com tip exchange by member Marko Bonaci. Please let others know how useful it is via the rating scale below. Do you have a useful Notes/Domino tip or code to share? Submit it to our bimonthly tip contest and you could win a prize and a spot in our Hall of Fame.
This was first published in October 2005