Consulting

Results 1 to 7 of 7

Thread: Solved: how to have "Screen message pop up" before background finished processing ?

  1. #1
    VBAX Regular
    Joined
    May 2005
    Posts
    62
    Location

    Solved: how to have "Screen message pop up" before background finished processing ?

    hello all....

    would like to seek some help here about any method to initiate an "on-screen message" when the VBA's is doing something for over 10 minutes...., then that "on-screen message" close automatically when the VBA processing finished......Thanks a lot.

    Not sure if msgbox can achieve this or not, but i got question mark on using msgbox:-

    - msgbox need to click the "confirmed" button in order to continue the process, however, i need to have the message pop up only (without need to click button to start the process) and close when the process finished.


    Thanks in advance for any helpers.....

    beginner

  2. #2
    Banned VBAX Contributor Cosmos75's Avatar
    Joined
    May 2004
    Location
    Alabama, USA
    Posts
    118
    Location
    You can ;

    • create a form with a message in a label
    • use VBA to open it when the code starts
    • and then to close close it when the code ends or when it exits dur to error handling.
    If you want to stop the user from closing it or doing anything else, set it to have a dialog border with no close button and set the pop-up/modal property to true.

  3. #3
    VBAX Regular
    Joined
    May 2005
    Posts
    62
    Location
    hi Cosmos75, tks for your tips and i believed this could solved my problem. tks!

  4. #4
    VBAX Regular
    Joined
    May 2005
    Posts
    62
    Location
    hello....my problem seems not 100% gone away, not sure how to make that "message" Form created to be stayed all the time on top of all others background screens which is refreshing on and off ?? tks for any tips....

    BR/

  5. #5
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    Tried setting modal = true?

  6. #6
    VBAX Regular
    Joined
    May 2005
    Posts
    62
    Location
    hi xCav8r, tks for your help again.! the problem is solved.

  7. #7
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    Glad to help!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •