|
|
|
|
|
Dicas
|
|
Visual Basic (Forms/MDI)
|
|
|
Título da Dica: Piscando um form para chamar a atenção do usuário
|
|
|
|
Postada em 26/10/2003 por ^HEAVY-METAL^
'You can make the Titlebar of your application flash With this API: Private Declare Function FlashWindow Lib "user32" (ByVal hwnd As Long, ByVal bInvert As Long) As Long
'To make the titlebar flash use this Line of code: FlashWindow Me.hwnd, 1
|
|
|
|
|