Microsoft
Software
Hardware
Network
Question : VFP code to make minimized app blink in taskbar?
can you provide a snippet of Visual Foxpro code that will force an application that is minimized in the taskbar to blink?
Answer : VFP code to make minimized app blink in taskbar?
Try this:
DECLARE INTEGER FlashWindow IN user32 INTEGER lnHwnd, INTEGER lnInvert
FOR lnI = 1 TO 10
= FlashWindow(_vfp.HWnd, 1)
WAIT "" TIMEOUT 0.25
NEXT
= FlashWindow(_vfp.HWnd, 0)
Random Solutions
varchar sort
Network Identification Wizard
Unable to recover outlook PST file
How to retrieve and submit using secondary data connections in InfoPath
SBS2008 Error 50331656 Remote Desktop
Access 2007 merge form + subform to Word
Error Type mistach when creating and running Excel macro through Access
Web.config app error problem
Deadlock When Doing Begin and Commit Transaction.
Why is #include "stdafx.h" required to run the following code from this C++ book?