Vba: separate popup windows for messages and reminders?

One of the things I miss, and know that many probably don't, but I do, is the separate popup windows that Outlook used to deploy for reminders and incoming email notifications.  They weren't all lumped in together as in recent Outlook versions. 
I'm sure this new way works for many people but for power users such as myself, it was much easier to control things when each reminder or notification was separate.  Tedious, sure, when there were a lot, but certainly much easier than today's environment,
ultimately.
As I've found and implemented more and more vb, I'm getting back a lot of lost functionality from the past.  I went looking and thought I'd found a macro a couple of weeks ago that would do the job but it's actually not turned as I'd hoped.  Here
it is, the one that I use for emails from the folks, to give an example; it's invoked through a rule:
' HOME Emails:
Sub CustomMailMessageRule_Mom_or_Dad(Item As Outlook.MailItem)
MsgBox "Mail Received from Mom or Dad: " & Item.Subject
End Sub
The above does sort of give me a separate window popup but it's one that stops everything else in its tracks.  I have to accept it before more notifications pop up but they also stop any notifications from Outlook, period, yet don't give me separate
notification popups that can then be snoozed or even just minimized! Not good.
Can anyone suggest something that would help?  I recently moved all my reminders that were on a third party application to a secondary calendar that I created in Outlook where I saw, to my delight, that now will fire up reminders - something that wasn't
possible in the past (one tiny good thing we've received in exchange for so much lost functionality from a user standpoint! <g>).  It's just now even more difficult to work through everything that is lumped in under one window - And no custom boxes
with different colours or _anything_ to help differentiate them.
So, is there any way, perhaps vb, to have notifications fired from different popup windows somehow, emulating older Outlook versions?
Thanks so much!

Hello SGFan,
The MsgBox call stops the current thread until it is closed, i.e. the modal form is displayed. But you are interested in a non-modal form which doesn't stop the thread.
You can try to display a user form instead using the Show method.
UserForm1.Show vbModeless
However, it will not let the Outlook running. You need to display the form on another thread, it is possible with add-ins (not VBA).  See  Modeless
form that still pauses code execution for more information.
So sorry for the delay.  I'm still with the same problem so the above was not encouraging.  Though we come here to this forum to deal with vba, unlike the old NGs, it seems there are less users and more real developers, which I am not.  Just 
a power user.  And the above is not something I have yet crossed into.  It sounds like, but I'm guessing here, that this method requires a form (am I right)?  I haven't a clue how to do those yet, if that's the case <sigh>.  All I
know is that there are too many emails coming in with no easy way to make sure we don't miss something important.
This answer shows me that this particular approach isn't the solution.  This type of message box wasn't ideal, either.  Lordy but I miss so many features of Outlook 2000 all the time.  All these popups getting launched together is great for
a lot of people, but I'm not one of them.
Okay, back to trying to find a solution.
Thank you!!

Similar Messages

  • Why is the time different on my iphone4 for messages and reminders to the actual time on my phone

    I have had to set the time zone on my phone manually as it is wrong. so now that shows correctly. However when i set a reminder and get messages. They show up as a different time zone altogether. So my reminders are coming through 12 hours too late. How can I fix this? I have tried resetting the time manually and automatically.

    On your iPhone ..
    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    Then tap Settings > General > Date & Time
    Switch:  Set Automatically ON
    No data is lost due to a reset.

  • Popup window for downloading a file

    Hi,
    my dear users want me to do the impossible possible. My code generates an XML file which in time I displayed it in an Iframe in the application. When the standard popup window shows up, they can either Open, Save or Cancel it. This was allright.
    Now they want the file in a new window displayed (when they press Open), because opening the file in the same window means they leave the application and after reading the file, they have to start the application again. I do it like this:
    The code works perfect only with the Alert instructions. Once I delete it, the window is opened and inmediately closed. The popup window for the file does not show up.
    Thanks for your ideas.

    here is the code sample.
    1. user clicks a button in the main page , which will generate xml and show the same in a new window.
    page attributes
    display_url     TYPE     STRING                                                                
    file_mime_type     TYPE     STRING                                                                
    flights     TYPE     FLIGHTTAB     Table for SFLIGHT
    wf_xml     TYPE     XSTRING
    layout:
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title=" " >
        <htmlb:form>
          <htmlb:textView text   = "Hello World!"
                          design = "EMPHASIZED" />
          <htmlb:button text    = "Press Me"
                        onClick = "myClickHandler" />
          <%
      IF  display_url IS NOT INITIAL.
          %>
          <script language="Javascript">
            window.open("<%= display_url%>").focus();
          </script>
          <%
      ENDIF.
          %>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    oninputprocessing code.
    data: cached_response type ref to if_http_response.
    data: guid type guid_32.
    CALL TRANSFORMATION (`ID`)
                SOURCE flights   = flights[]
                RESULT XML wf_xml.
    file_mime_type = 'text/xml' .
    create object cached_response type cl_http_response exporting add_c_msg = 1.
      cached_response->set_data( wf_xml ).
      cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                         value = file_mime_type ).
      cached_response->set_status( code = 200 reason = 'OK' ).
      cached_response->server_cache_expire_rel( expires_rel = 180 ).
      call function 'GUID_CREATE'
        importing
          ev_guid_32 = guid.
      concatenate runtime->application_url '/' guid into display_url.
      cl_http_server=>server_cache_upload( url      = display_url
                                           response = cached_response ).
      return.
    2.user clicks a button in the main page , which will generate xml and present the user with a option to save locally or cancel. (in this case no additional browser window will be opened - only a popup and also the main page is not affected)
    layout code:
    same as option 1.
    oninputprocesing code.
    everything is same except change
    file_mime_type = 'text/xml' .
    to
    file_mime_type = 'application/oct-stream' .
    Note: wf_xml is of type xstring which holds the xml stream.
    Regards
    Raja
    Message was edited by: Durairaj Athavan Raja

  • Popup windows are small and cannot be resized in Firefox v31.0. v30.0 and earlier does not have this problem. Example: Hostgator's SmarterMail. XP, 7, 8.1.

    My webmail interface is SmarterMail from Plesk as supplied by Hostgator. When Firefox updated to v31.0, I lost the ability to send mail because the popup windows for "New", "Reply", "Reply All", and "Forward" are too small to enter information and cannot be resized or maximized.
    This problem does not occur with older versions of Firefox (tested 16.0.2, 21.0, 24.0, and 30.0) or with Chrome or Internet Explorer. While I am writing to you from a Windows XP Pro SP3 system, I have also verified the problem under Windows 7 Pro (x64) and Windows 8.1 (x64).
    It's not profile settings, malware, or add-ons. I've tried Firefox Safemode and I've tried "Reset Firefox".
    For the time being the workaround is to disable Firefox updates and downgrade everybody with v31 to v30. Please fix this ASAP. You have lots of people reporting it.

    As a temporary workaround, you can block website scripts from resizing windows. It's a bit of a sledgehammer, but another user who has this problem indicated that it does stop the SmarterMail script from rolling up the window.
    Here's how:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''dom''' and pause while the list is filtered
    (3) Double-click the '''dom.disable_window_move_resize''' preference to switch it from false to true.

  • Why is Firefox opening a separate browser window for each link instead of a new tab in the current browser window?

    Suddenly firefox has started opening a new, separate browser window for every link and thing I open. It used to just open a new tab in the current browser. I must have closed down 15 browsers when trying to get back to a previous web page - the back button doesn't work when each click leads to a new window opening! I went into options and my settings have not changed, they still say "open new tab" for links. This just started happening out of the blue today. What's up?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Mountain Lion - Window for ID and Pw appear without text!

    After install Mountain Lion, (Leopard to Mountain Lion with succes!) the window for ID and Pw (that appear for all permission, to install a new program or other) appear without text! Button to say ok or return are without text so I can't see nothing! And I can't insert my ID or my password!
    What appened?????
    Sorry for my english..
    Thanks, Sara

    Please read this whole message before doing anything. This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it. Step 1 The purpose of this step is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.” While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin. Test while logged in as Guest. Same problem(s)? After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it. *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing. Step 2 The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows: 
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
     Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs. The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. *Note: If FileVault is enabled, or if a firmware password is set, you can’t boot in safe mode. Test while in safe mode. Same problem(s)? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • How can we create a popup window for confirmation while clicking of button

    HI Friends,
    I am creating a application, In which I want to create a popup window for confirmation on clicking of a button.
    I also need two buttons on popup window i.e. 'Yes' & 'No'.
    On yes i want to perform some operation and on No i want to cancel that operation.

    Hi Narendra,
    try using the following code in ONACTION of ur button for popup :
    * Popup
       *  Generate Popup
        DATA lo_window_manager TYPE REF TO if_wd_window_manager.
        DATA lo_api_component  TYPE REF TO if_wd_component.
        DATA lo_window         TYPE REF TO if_wd_window.
        lo_api_component  = wd_comp_controller->wd_get_api( ).
        lo_window_manager = lo_api_component->get_window_manager( ).
        lo_window         = lo_window_manager->create_window(
          window_name          = 'W_POPUP'
         window_position = if_wd_window=>co_center
          message_display_mode = if_wd_window=>co_msg_display_mode_selected
          button_kind          = if_wd_window=>co_buttons_yesno
          message_type         = if_wd_window=>co_msg_type_none
          default_button       = if_wd_window=>co_button_yes
        DATA:  l_api TYPE REF TO if_wd_view_controller.
        l_api = wd_this->wd_get_api( ).
        " subscribe action for Ok button
        lo_window->subscribe_to_button_event(
                     button            = if_wd_window=>co_button_yes
                     action_name       = 'OK_POPUP'
                     action_view       = l_api
                     is_default_button = abap_true ).
        lo_window->open( ).
    regds,
    amit

  • How to close a popup window for system events?

    Hi,
    I have a screen 110 which shows several input field in popup mode.
    The Cancel button can close the screen.
    But my question is how to close the popup window for the following system events?
    1, Customer clicks the cross button in top-right corner
    2, Customer clicks the system icon in top-left corner and then select either: "Close" or "Stop Session"
    The PAI subroutine of the screen has not been triggered for the above system events.
    Thanks for the coming help.
    Best Regards,
    David

    Hi Siddharth,
    I did check with another very experienced ABAP developer.
    The solution was the same as what Arunima Rudra provided.
    And I got a sample program which did work properly.
    The headache is that the system events in my program still cannot be triggered even after I have all the same changes.
    Anyway, I suggest you to try the solution as provided by Arunima Rudra.
    It should work for 2 system events:
    1, Customer clicks the cross button in top-right corner
    2, Customer clicks the system icon in top-left corner and then select either: "Close"
    For "Stop Session", it should not be handled by popup.
    You can observe the same behavior in ALV sorting configuration popup.
    Good luck!
    Regards,
    David

  • Yosemite, messages, preferences are grayed out. It opens but the window for messages is blank.

    Yosemite, messages, preferences are grayed out. It opens but the window for messages is blank. Can't click on anything.

    Hi,
    You appear to have the wrong end of the stick as they say.
    Just starting your computer needs certain Fonts to be present to display the text you are likely to see.
    Most of those needed to do this are in the Hard Drive icon/System/Library/Fonts.
    Some apps require different Fonts  and in the case of Messages this is AppleGothic (all one word) and is found in Hard Drive/Library/Fonts.
    You would normally use the Apple App called Font Book to check these Fonts are working properly.
    Prior to the Yosemite version of Messages (still called Messages 8 like th Mavericks version) you could change the Font use in the actual Messages in the app.
    On a Character or word or Sentence basis there was the Format Menu.
    There was also a Pane in th Preferences called Messages that let you choice the Font, the colour of the text and the  colour of the balloons for Out going Messages and also Overriding the incoming ones.
    You can no longer do this as the Preferences Pane and the Format Menu have gone.
    7:20 pm      Thursday; December 11, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How do I set up a new phone number for messaging and facetime on my iPad?

    My iPad has it's own phone number through Verizon.  Before I knew this, I had already set up messages to use my iPhone number.  Now I can't figure out how to set up the iPad phone number for messages and facetime on the iPad.

    Are you trying to message another Apple device?
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
     Cheers, Tom

  • I wanted to install windows for Mac and I had vista so I put I the disk and installed it then it  loses my  computer wen I turned it on it went straight to windows and it asked me to install it and put in the windows box code I found out I didn't have Ma.

    I wanted to install windows for Mac and I had vista so I put I the disk and installed  followed the steps it then it  closed my  computer wen I turned it on it went straight to windows and it asked me to install it and put in the windows box code I found out I didn't have it so I wanted to go back to Mac I shut it off and it just goes back to windows and asks me to put the box code how do I get rid of it and go back to Mac because no buttons work at the start and i can't take out the disk !! Help

    The two other posts are correct... so I'll just clarify.  What's happening right now is your system is trying to boot into Windows in order to finish the installation.  What you want to do is make it boot into OS X.  As mende1 indicated, with your system off, hold down the Option key and continue to hold it while you turn the system on.  You will eventually be presented with an option to select which partition you would like to boot from.  Choose OS X.  After you get into OS X, again, as mende1 indicated, change the Startup Disk to OS X.  What this will do is cause your system to automatically boot into OS X when you restart it instead of you having to use the Option key when booting each time.
    Relaunching BootCamp Assistant will allow you to remove your Windows installation and partition. 

  • Separate Bank accounts for AP and AR

    Hi SAP Gurus,
      My client want to have Separate Bank accounts for AP and AR,  for different  reasons, I want to know how this  configured in SAP and also I want to know  what is  standard process followed across SAP implementations
    Please Suggest Disadvantages and Advantages of Having Different Bank accounts for  AP and AR..
    Thanks In advance
    Your Inputs are rewarded!!
    Thanks
    Sireesha

    Hello,
    Let me add a note on this subject.
    This setup has its advantages.
    A separate AR and AP bank account is really useful when you have a returned payment.
    If an incoming amount arrives to your AP ( payer ) account it definately means it is a rejected transfer.
    It helps a lot to reconlile the accounts.
    Mark was absolutely right on the following:
    This process really depends on Cash Management (Treasury).
    Cash Management needs to pool the accounts so they can balance cash easily.
    Good luck!
    Best regards,
    Endre

  • SharePoint site continues prompting window for Id and Password?

    Hi, recently all users facing issue while opening SharePoint 2010 Sites, sites continues prompting window for Id and Password, even after entering information it’s asking.
    When I login on server and try to open the site, there was also asking prompt.
    And when I added user id’s in Server local administration group then sites are opening and when if I remove user id’s from Server local administration then again starting to ask prompt.
    Domain Controller is running fine.
    Please tell what is the issue?

    Prakash,ensure that the site is added in trusted zone or disable the loop back check.please check the links below that gives you the guidance on how to over come the issue.
    http://expertsharepoint.blogspot.de/2013/10/sharepoint-site-is-prompting.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Popup window for data selection in maintenance view

    Hi,
    How to create popup window for data selection in maintenance view. For example when you go to view v_t510 in se16, there you will see a popup window to enter values. after you enter the values in that window, then data related to those values that you entered in the popup window will displayed.
    How can we do that for the custom maintenance view?
    Thanks in advance for your help guys.
    Regards,
    Srinivas.

    In your custom maintainace view, if you select the Data browser / Table view maintainace under the tab "Maint Status" as "Dispaly maintanence allowed with restriction" than system will give you popup to restrict by selection.
    Regards,
    Naimesh Patel

  • SP 7000i Subj: Getting ring tones for messages and/or email to a Bluetooth device i.e., H700C

    I ask if the ring tone notification for messages and/or email would ring to the Bluetooth. I was told they would.
    Is there an solution?

    Did you mean that you're getting tone for Messages/email in your H700C bluetooth headset? I Blackberry use HS-655+ Wireless Headset which don't give me such prompts through my headset.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

Maybe you are looking for