473,796 Members | 2,465 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 3515
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
2188
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
1614
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
2358
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
1876
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
2102
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
6180
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
1299
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
5607
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
1269
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
9680
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
9528
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
10456
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
10230
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10012
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...
1
7548
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6788
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5442
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5575
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.