![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hi,
I am using messagebox in my VBA macro. The MessageBox seems to not working as it doesn't get focused me until I activate my Outlook window. I also want to keep adding messages like "XXX", "YYYY" in same dialog box. Basically I am looking for similar dialog og "New Alert Item" that outlook support. Could you please suggest how/what dialog box that I can display from VBA code? Please let me know if you have any questions. -- Thanks, Paresh |
Ads |
#2
|
|||
|
|||
![]()
MsgBox is modal, you can't add to it after it's displayed, and the code
won't proceed until the user dismisses the message box. You can use a VBA UserForm, displayed non-modally to show text and add to it when you want. But that won't have the transparency or timed removal you have with the new message toast window that Outlook shows. There are 3rd party controls you can purchase that you can set transparency on and you can call and dismiss them based on a timer control, but that's not really appropriate for VBA code. I'd just probably stick with a UserForm since this is VBA code. Anything else would be very complex to implement. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech.com/products.htm "masani paresh" wrote in message news ![]() Hi, I am using messagebox in my VBA macro. The MessageBox seems to not working as it doesn't get focused me until I activate my Outlook window. I also want to keep adding messages like "XXX", "YYYY" in same dialog box. Basically I am looking for similar dialog og "New Alert Item" that outlook support. Could you please suggest how/what dialog box that I can display from VBA code? Please let me know if you have any questions. -- Thanks, Paresh |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
? button in dialog boxes | BBran | Outlook - General Queries | 1 | June 24th 07 02:42 AM |
All macro dialog boxes are blank | Midwest Muskie | Outlook - Installation | 3 | November 14th 06 05:53 PM |
Make daily repeating all day event display as individual boxes. | dwm | Outlook - Calandaring | 2 | September 22nd 06 08:51 PM |
Boxes, i.e change e-mail don't display fully/can't access option | Rich B | Outlook - Installation | 1 | September 2nd 06 05:56 PM |
Outlook add-in, display dialog box | Phoenix | Add-ins for Outlook | 2 | August 16th 06 09:42 AM |