| 小ネタ集 API |
|
| タイトルバーを点滅させる |
|
Public Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" _
(ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Public Declare Function FlashWindow Lib "user32" _
(ByVal hwnd As Long, ByVal bInvert As Long) As Long
hwnd = FindWindow("XLMAIN", Application.Caption)
FlashWindow hwnd, 1
|
|
|
|
|
|
|
|
|