473,785 Members | 2,498 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to override windows notifications/balloons/popups/outlookreminder s

I have a full-screen C# app, but windows notifications (the little
balloons on the bottom right-hand of the screen) and outlook reminders
will pop on top of my app. i want to prevent them from doing so.
does anyone know how?
thanks so much
Jul 9 '08 #1
5 3514
On Wed, 09 Jul 2008 07:44:12 -0700, njuneardave <da**********@g mail.com>
wrote:
I have a full-screen C# app, but windows notifications (the little
balloons on the bottom right-hand of the screen) and outlook reminders
will pop on top of my app. i want to prevent them from doing so.

does anyone know how?
Sure. Go into your Outlook settings and turn them off.

Your own application has no business disabling the behavior of some other
application. If users don't like the behavior, they can control that. If
they _do_ like the behavior, then you're just annoying your users by
disabling it yourself.

Pete
Jul 9 '08 #2
Thanks for the reply, Pete.
I did a poor job asking my question.

I want to disable all popups (Windows balloons and notifications,
email notifications, outlook reminders, etc...), but only when the app
is running. I don't want to make a persistent change, so I guess that
rules out registry changes. The outlooks pop-ups are just part of the
problem. And, this application will be distributed to several people,
so I'd like to inherently have my app block all "focus-stealing"
events while it runs.
Jul 9 '08 #3
I think the problem is that these popups and notifications arent focus
stealing. If you are writing in Word for Studio and Outlook pops up a
notification, you key presses still hit the app you were using. These things
just draw on top due (I guess) to them having a higher z-index or calling a
particular WinAPI function to make them totally topmost.

I would doubt this is possible as Microsoft will have coded Outlook
specifically to come on top of other applications like that.
--
Ciaran O''Donnell
http://wannabedeveloper.spaces.live.com
"njuneardav e" wrote:
Thanks for the reply, Pete.
I did a poor job asking my question.

I want to disable all popups (Windows balloons and notifications,
email notifications, outlook reminders, etc...), but only when the app
is running. I don't want to make a persistent change, so I guess that
rules out registry changes. The outlooks pop-ups are just part of the
problem. And, this application will be distributed to several people,
so I'd like to inherently have my app block all "focus-stealing"
events while it runs.
Jul 9 '08 #4
On Wed, 09 Jul 2008 10:01:15 -0700, njuneardave <da**********@g mail.com>
wrote:
Thanks for the reply, Pete.

I did a poor job asking my question.
Based on your clarification, I think your original question was stated
just fine. The fact is, your application does not have any business
changing the user's settings. If they find these notifications bothersome
while they are using your application, they can disable them themselves.

As Ciaran points out, these kinds of notifications shouldn't be stealing
the focus, so at worst they are temporarily obscuring part of your own
application. But again, that's something for the user to decide. In any
case, I don't think there's a uniform, reliable way to disable them.

Pete
Jul 10 '08 #5
"Peter Duniho" <Np*********@nn owslpianmk.comw rote:
As Ciaran points out, these kinds of notifications shouldn't be stealing
the focus, so at worst they are temporarily obscuring part of your own
application. But again, that's something for the user to decide. In any
case, I don't think there's a uniform, reliable way to disable them.
I haven't used Vista, personally, but doesn't it offer a "presentati on mode"
(intended for slideshows etc.) that disables most alerts? Perhaps that would
be better than nothing, if the poster could find a way to enable it via
interop.

Eq.
Jul 10 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2187
by: Rich Miller | last post by:
Previously posted on the VB newsgroup with no replies, so any ideas appreciated. I have written a service application in VB (VS.Net 2003). On start, the service creates an object that instantiates a System.IO.FileSystemWatcher like so (the _watcher is declared at the class level as Private and no WithEvents): ' construct the file watcher _watcher = New FileSystemWatcher _watcher.Path = WatchPath _watcher.NotifyFilter =...
2
1612
by: Reply Via Newsgroup | last post by:
Folks, Windows, and refering to them (be they in seperate frames or in a popup) always catch me... There is parent, top, self, the name of the window itself and where it sits when refering to its full property name... It drives me up the wall that I can't get this right after six months or so... Before someone gives me a spiel on not using popups: 1) It is for an intranet LAMP based application and
1
2356
by: dejausenet | last post by:
I have firefox 1.0, running on winxp Firefox blocks popups fine, but sometimes, for selected occassions only, i would like to be able to have window popup; without enabling whole domains, as other popups from same domain are not desired. How can I selectively override the firefox popup blocker, without opening up pop up from many ads from same domain. Tx
8
1875
by: Rajko | last post by:
I need to send refresh message to Windows Explorer from shell extension(DLL). But I dont know how to obtain handle to Windows Explorer from within DLL since i dont have any handle to any window. Thanks, Rajko
2
2100
by: Matt Hamilton | last post by:
I have an application page with a datagrid with a checkbox on each row. The user should check the rows they want to modify and then click a button. When the button is clicked, I have a Click handler that builds a url and then registers a startup script to open a modal dialog window. With XP SP2 installed the pop-up blocker stops the windows from displaying. Is there any way around this? My users are too stupid to turn off the popup blocker...
3
6178
by: Xah Lee | last post by:
there are two library for popup balloons: • Erik Bosrup's overlib at: http://www.bosrup.com/web/overlib/ • Walter Zorn from: http://www.walterzorn.com/tooltip/tooltip_e.htm however, their code is a bit dense to decipher. i wanted to know, what is the basic mechanism to make this possible?
0
1298
by: GovardhanReddy | last post by:
Hi Can any body help me on window service desktop alerts or notifications. My question is i am working on windows services,I need to generate desktop Notifications using my services.I did Notifications in windows application(using windows forms),it is working fine,But If i paste the same code in Services it is not working ,Can any know abt it Plz help me. Regards Vardhan
4
5606
by: windypower | last post by:
I'm looking for a way to implement desktop notifications (much like an instant messaging program or a mail notifier) within my Python application, on Windows only (no Gtk/Galago, please). I need no more than a simple text-based notification, which should be clickable and have a timeout, nothing else. I do not want to use Windows's "balloon tips", either. Any suggestions?
18
1268
by: Prisoner at War | last post by:
On May 2, 4:31 pm, Ben C <spams...@spam.eggswrote: I found this code at http://colorado-springs.pm.org/balloonHint.html but the site doesn't seem to provide a working example! Yeah, something like that Kontera in-line text stuff, except totally client-side...hmmm, actually, that Kontera stuff can be annoying, too...better switch back to onClick, since onMouseOver can be accidental...what I will do with an onMouseOver, however, is...
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9481
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10341
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9954
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8979
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5513
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4054
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3656
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2881
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.