views:

166

answers:

1

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.

+1  A: 

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().

Matthew Xavier