vote up 0 vote down star

Is there any way to pop-up TIPS and pop-over any other windows open? I don't find a flag to set it in NOTIFYICONDATA struct.

flag

78% accept rate

1 Answer

vote up 0 vote down check

NOTIFYICONDATA is used with Shell_NotifyIcon() to place and control icons in the taskbar's notification area. If you are trying show tooltips or balloon messages from a notification icon, they will normally be at the top of the window order when they appear. No special action should be required on your part.

In general, to make a window you directly control appear above all other windows, you apply the WS_EX_TOPMOST style, either when creating the window with CreateWindowEx() or later using SetWindowPos().

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.