To Hide Or Show Notepad In Specific Time Interval
To Hide Or Show Notepad In Specific Time Interval
API Declarations
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Rate To Hide Or Show Notepad In Specific Time Interval
(1(1 Vote))
Static i As Integer
p = FindWindow("Notepad", vbNullString)
If i = 0 Then
Call ShowWindow(p, 1)
i = i + 1
ElseIf i = 0 Then
Call ShowWindow(p, 0)
i = 0
End If
End Sub
To Hide Or Show Notepad In Specific Time Interval Comments
No comments yet — be the first to post one!
Post a Comment