Handling bubble popups in windows mobile 5.0

M

metadojo

Hello,

I need to be able to intercept the occurrence of the little bubble
popups
In windows mobile 5.0 and decide if I want to let them appear to the
user.
Stuff like ....

"Connecting....",
When you initiate a GPRS connection

"Time and Next Appointment"
When you click on the time

The subject of the window doesn't matter I just need to talk to deal
with those windows in general.

I read somewhere that I could call a C++ function called FindWindow and
get a handle to the window
And use that handle to close the window.

There are registry entries and associated GUI settings for
"Connection Disconnected"
"Connection Established"
"Wireless Network Detected"
Notification windows But im not concerned with those.

I need to interface with the bubble popups and prevent and/or act when
they happen.

Thank you very much.
 
P

pdr75

I beleive this is part of the windows notification API.

Here is a link to an article explaining how to hide a particular
notification which should be extendable...

http://www.thecodeproject.com/ce/RemoveLowBattIndication.asp

Regarding the "connecting.." balloon specificically, you may want to
consider connecting to your WWAN using RAS instead of the connection
manager api. This will avoid the display of a notification balloon
entirely.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top