G
gif
i want flash the window in a particular moment, i can use FlashWindow() fo
that but it doesn't work on .NET.
that but it doesn't work on .NET.
* "gif said:i want flash the window in a particular moment, i can use FlashWindow() fo
that but it doesn't work on .NET.
Herfried K. Wagner said:Post the declare you use...
* "gif said:sorry what do u mean?
what must i post?
Herfried K. Wagner said:Sorry... Try this code:
\\\
Private Declare Auto Function FlashWindow Lib "user32.dll" ( _
ByVal Handle As IntPtr, _
ByVal bInvert As Boolean _
) As Int32
.
.
.
Public Sub Flash()
FlashWindow(Me.Handle, True)
End Sub
///
* "gif said:Can you translate that code in C++?