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
Subtract number and pad as 3 digits in Oracle 9i
MS DOS looping
Disable printing in Internet Explorer (Want to prevet printing Sharepoint Lists)
Setting Office (Excel) workgroup templates location
SCCM Dependancy on NetBios
Access 2007 Master-Detail Report Question
.net framework 3.5 install hangs
C# copy files from one folder to another
Find Duplicate Query
How can I change the colour of text in a report field to match a colour specified in the report?