WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

How To
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

Make Task Bar Blink


Question:

Some applications (e.g. Word) make the (minimized)icon in the task bar blink when some event happens. Is there any way to achieve this with WinBatch applications ?

Answer:

User32 = StrCat (DirWindows (1),"user32.DLL")
WinFlash = DllHwnd (WinGetactive())
For xx = 1 To 10 ;Flash five times
   DllCall (User32, long:"FlashWindow", long:WinFlash, long:1)
   TimeDelay(0.5)
Next
DllCall (User32, long:"FlashWindow", long:WinFlash, long:0); Bring the window to normal position

Article ID:   W17014
File Created: 2007:07:03:14:27:36
Last Updated: 2007:07:03:14:27:36