Hi,

I´m trying to kill by code the notification popup bubble that is shown when
we receive a new sms message, just inmediatly when it appears.

Is it possible ??

Thanks,
Shankar Balasubramanian

Re: How to Kill sms received notification? by Fabien

Fabien
Thu Oct 04 07:13:28 PDT 2007

Hi,

Try to find the handle of the window of the notification popup and
send it a WM_CLOSE message:
For finding the handle of teh window, check out this:
http://fabdecret.blogspot.com/2007/05/find-window-handle.html

Fabien Decret (Device Application Development MVP)
Windows Embedded Consultant


ADENEO (ADESET)
http://www.adeneo.adetelgroup.com/ | http://fabdecret.blogspot.com/


On 4 oct, 14:36, Shankar <Shan...@discussions.microsoft.com> wrote:
> Hi,
>
> I=B4m trying to kill by code the notification popup bubble that is shown =
when
> we receive a new sms message, just inmediatly when it appears.
>
> Is it possible ??
>
> Thanks,
> Shankar Balasubramanian



Re: How to Kill sms received notification? by Lisa

Lisa
Thu Oct 04 08:56:24 PDT 2007

It's better to not have the popup appear at all.
You can do this by making registry change, same as Sounds & Notification
settings.
You may also be able to intercept the SMS message before notification is
displayed.

"Shankar" <Shankar@discussions.microsoft.com> wrote in message
news:851E732B-E8AD-45E9-8B78-70F34BDD3192@microsoft.com...
> Hi,
>
> I´m trying to kill by code the notification popup bubble that is shown
> when
> we receive a new sms message, just inmediatly when it appears.
>
> Is it possible ??
>
> Thanks,
> Shankar Balasubramanian
>



RE: How to Kill sms received notification? by dbgrick

dbgrick
Thu Oct 04 11:35:00 PDT 2007

To disable the SMS Sent notification go to
HKLM\Software\Microsoft\Inbox\Settings. If not present, then create it.
Create a DWORD key called SMSNoSentMsg (case sensitive) and set the value to
1 to disable and 0 to enable.

To always enable the SMS Delivery notification go to
HKLM\Software\Microsoft\Inbox\Settings. If not present, then create it.
Create a DWORD key called SMSDeliveryNotify and set it to 0 to disable and 1
to enable.

To totally disable SMS notifications and remove the sms received icon from
the screen go to HKLM\Software\Microsoft\Inbox\Settings and Create a DWORD
key called SMSAvailable and set it to 0. To enable again, set it to 1.

I hope this helps.

Rick D.
Contractor

"Shankar" wrote:

> Hi,
>
> I´m trying to kill by code the notification popup bubble that is shown when
> we receive a new sms message, just inmediatly when it appears.
>
> Is it possible ??
>
> Thanks,
> Shankar Balasubramanian
>

RE: How to Kill sms received notification? by Shankar

Shankar
Thu Oct 04 23:25:01 PDT 2007

Hi,

Thanks for your response.

Apart from changing the registry settings is there any other method (Through
win APIs ) available to hide the "New text messge received" balloon
Notification just immediatly when it appears?

Thanks
Shankar B.

"dbgrick" wrote:

> To disable the SMS Sent notification go to
> HKLM\Software\Microsoft\Inbox\Settings. If not present, then create it.
> Create a DWORD key called SMSNoSentMsg (case sensitive) and set the value to
> 1 to disable and 0 to enable.
>
> To always enable the SMS Delivery notification go to
> HKLM\Software\Microsoft\Inbox\Settings. If not present, then create it.
> Create a DWORD key called SMSDeliveryNotify and set it to 0 to disable and 1
> to enable.
>
> To totally disable SMS notifications and remove the sms received icon from
> the screen go to HKLM\Software\Microsoft\Inbox\Settings and Create a DWORD
> key called SMSAvailable and set it to 0. To enable again, set it to 1.
>
> I hope this helps.
>
> Rick D.
> Contractor
>
> "Shankar" wrote:
>
> > Hi,
> >
> > I´m trying to kill by code the notification popup bubble that is shown when
> > we receive a new sms message, just inmediatly when it appears.
> >
> > Is it possible ??
> >
> > Thanks,
> > Shankar Balasubramanian
> >

RE: How to Kill sms received notification? by dbgrick

dbgrick
Fri Oct 05 12:02:00 PDT 2007

Unfortunately not. The only way I've found to do this is to alter the
registry settings, and for the settings to take affect, you have to perform a
reboot of the device.

Regards,
Rick D.
Contractor

"Shankar" wrote:

> Hi,
>
> Thanks for your response.
>
> Apart from changing the registry settings is there any other method (Through
> win APIs ) available to hide the "New text messge received" balloon
> Notification just immediatly when it appears?
>
> Thanks
> Shankar B.
>
> "dbgrick" wrote:
>
> > To disable the SMS Sent notification go to
> > HKLM\Software\Microsoft\Inbox\Settings. If not present, then create it.
> > Create a DWORD key called SMSNoSentMsg (case sensitive) and set the value to
> > 1 to disable and 0 to enable.
> >
> > To always enable the SMS Delivery notification go to
> > HKLM\Software\Microsoft\Inbox\Settings. If not present, then create it.
> > Create a DWORD key called SMSDeliveryNotify and set it to 0 to disable and 1
> > to enable.
> >
> > To totally disable SMS notifications and remove the sms received icon from
> > the screen go to HKLM\Software\Microsoft\Inbox\Settings and Create a DWORD
> > key called SMSAvailable and set it to 0. To enable again, set it to 1.
> >
> > I hope this helps.
> >
> > Rick D.
> > Contractor
> >
> > "Shankar" wrote:
> >
> > > Hi,
> > >
> > > I´m trying to kill by code the notification popup bubble that is shown when
> > > we receive a new sms message, just inmediatly when it appears.
> > >
> > > Is it possible ??
> > >
> > > Thanks,
> > > Shankar Balasubramanian
> > >