Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I make the application titlebar flash? 1

Status
Not open for further replies.

AccessGuruCarl

Programmer
Jul 3, 2004
471
US
Hello All,

Is it possible to have the application titlebar flash, and change it's font color with an API call?

2nd question...
Timer Control...
Is it possible to have a global timer interval also?

I'd like to a second timer event to a form, can I do this?

Thanks in advance.

AccessGuruCarl
Programmers helping programmers
you can't find a better site.
 
Try FlashWindow. The code below is me calling it from within a timer in VFP but there'll be VB examples in MSDN.

DECLARE INTEGER FlashWindow IN Win32API ;
AS FlashWindow ;
INTEGER HWnd, INTEGER bInvert

=FlashWindow(This.nHandle, 1)

Geoff Franklin
 
How are ya AccessGuruCarl . . . . .

Have a look here: Flash the Title Bar or Taskbar Button

Calvin.gif
See Ya! . . . . . .
 
TheAceMan1,
The code you have directed is .NET specific. Are you sure this will work in VB/VBA ? There are differences in .NET API and VB API

________________________________________
Zameer Abdulla
Visit Me
A child may not be able to lift too much.
But it can certainly hold a marriage together
 
The FlashWindow API function is a regular win32 (I think) API.

I haven't used it, but here's a VB(A) declaration/sample:

[tt]Private Declare Function FlashWindow Lib "user32" (ByVal hwnd As Long, ByVal bInvert As Long) As Long

Const Invert = 1[/tt]

Then, in a relevat event, call it, for instance like this:

[tt]FlashWindow Application.hWndAccessApp, Invert[/tt]

or for a form

[tt]FlashWindow Me.hwnd, Invert[/tt]

Try it out with a timer etc...

Check out AllApi.Net for info on API's (which is where this sample originates).

Roy-Vidar
 
Sorry guys . . . .

Wrong reference . . . .

I have one I tested last year somewhere, just gotta find it!


Calvin.gif
See Ya! . . . . . .
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top