![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
| Tags: force, popup, reminder, window |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hello
I want to force the Reminder Window to Pop-Up. Currently, sometimes, it only flashes the Taksbar; and sometimes it does pop-up. If I'm not paying attention or stepped away, I don't notice the reminder window. In the Application_Reminder event, I tried doing an Item.Display, but that only displays the actual Calendar/Item and not the Reminder Window. Thanks. |
| Ads |
|
#2
|
|||
|
|||
|
The reminder window has no hooks you can use to force it to pop-up unless
you trap Windows messages to it and intercept them. You'd have to use something like SetWindowPos with a topmost argument for force the window open and on top, assuming you can hook into those messages and get an hWnd for the reminders window. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Spawn666948" wrote in message news:8Pxyg.891$8v.860@trnddc05... Hello I want to force the Reminder Window to Pop-Up. Currently, sometimes, it only flashes the Taksbar; and sometimes it does pop-up. If I'm not paying attention or stepped away, I don't notice the reminder window. In the Application_Reminder event, I tried doing an Item.Display, but that only displays the actual Calendar/Item and not the Reminder Window. Thanks. |
|
#3
|
|||
|
|||
|
I was afraid of that. I was hoping it'd be something simple without having
to resort to APIs. I have some code lying around that can enumerate windows. When running the code, I noticed the Reminders Window is there, just not displayed...waiting to be triggered. And, it doesn't have it's own class. It just says "1 Reminders" in the caption and #32770 for the class. But, digging into it's child windows, there are more items that can help differentiate it from other windows. Given that, I can come up with hWnd of the Reminders Window. I'll post some code up since I don't seem to be the only one wanting the pop-up to be more persistent since we rely on it for meetings. -- "Ken Slovak - [MVP - Outlook]" wrote in message ... The reminder window has no hooks you can use to force it to pop-up unless you trap Windows messages to it and intercept them. You'd have to use something like SetWindowPos with a topmost argument for force the window open and on top, assuming you can hook into those messages and get an hWnd for the reminders window. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Spawn666948" wrote in message news:8Pxyg.891$8v.860@trnddc05... Hello I want to force the Reminder Window to Pop-Up. Currently, sometimes, it only flashes the Taksbar; and sometimes it does pop-up. If I'm not paying attention or stepped away, I don't notice the reminder window. In the Application_Reminder event, I tried doing an Item.Display, but that only displays the actual Calendar/Item and not the Reminder Window. Thanks. |
|
#4
|
|||
|
|||
|
The only problem is that with SetWindowPos at least an argument of HWND_TOP
doesn't seem to do much, HWND_TOPMOST has to be used (after calling SetForegroundWindow of course) and that leaves the reminders window on top all the time no matter what application or window is selected in the UI for focus. You'll have to handle cases where other windows want to come to the top of the z-order. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Spawn666948" wrote in message news:P6Pyg.204$oz.49@trnddc07... I was afraid of that. I was hoping it'd be something simple without having to resort to APIs. I have some code lying around that can enumerate windows. When running the code, I noticed the Reminders Window is there, just not displayed...waiting to be triggered. And, it doesn't have it's own class. It just says "1 Reminders" in the caption and #32770 for the class. But, digging into it's child windows, there are more items that can help differentiate it from other windows. Given that, I can come up with hWnd of the Reminders Window. I'll post some code up since I don't seem to be the only one wanting the pop-up to be more persistent since we rely on it for meetings. -- |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Reminder window doesn't pop up | M Skabialka | Outlook - General Queries | 2 | July 21st 06 10:16 PM |
| Secondary calendars should allow for reminder pop-ups. | Brain | Outlook - Calandaring | 0 | July 5th 06 02:22 PM |
| Unable to view reminder pop-up | Manipuqove | Outlook - Calandaring | 0 | May 9th 06 07:24 AM |
| PLEASE HELP with reminder pop-ups | William | Outlook - Calandaring | 6 | March 29th 06 07:48 PM |
| How to get pop up meeting reminders to appear on top of all window | tinsel | Outlook - Calandaring | 0 | March 27th 06 01:41 PM |