+ Reply to Thread
Results 1 to 4 of 4

Display message: Processing....

  1. #1
    Registered User
    Join Date
    07-27-2005
    Posts
    24

    Smile Display message: Processing....

    I have a program that takes a few seconds to run and I would like to display a message that says "Processing....", and close it when the procedure is finished. The message should not require any response from the user such as vdYesNo, etc.

    Can anyone help with this?

    Thanks in advance!

  2. #2
    Registered User
    Join Date
    03-03-2005
    Location
    UK
    Posts
    26
    Hi i know this isn't exactly what you wanted but this is a little touch i use in my workbooks when there processing a function.

    I set the status bar to my own custom processing comment.

    You can also do the same with the MS Excel caption heres a bit of code to show you how to do it

    Dim status As String
    Dim caption As String

    status = Application.StatusBar
    caption = Application.caption

    Application.StatusBar = "Processing..."
    Application.caption = "Processing..."

    'Start Function


    'End Function

    Application.StatusBar = status
    Application.caption = caption

    Hope This Helps

  3. #3
    Edward Ulle
    Guest

    Re: Display message: Processing....

    Create a userform say "UserFormProcessing" and place a label with the
    word processing on it. The userform should be ShowModal=False.

    To display the processing form place the following code when you want
    the form to display.

    UserFormProcessing.Show

    And when you want it to disappear place the following code.

    UserFormProcessing.Hide

    Look at ProgressBar since it shows progress and tells the user something
    is happening.



    *** Sent via Developersdex http://www.developersdex.com ***

  4. #4
    Registered User
    Join Date
    07-27-2005
    Posts
    24
    I created the form, but when it opens (.Show), the form is blank (i.e. white). It doesn't display the text "Processing request, please wait...". Can someone please tell me how to correct this problem.

    Thanks in advance everyone!
    Last edited by mthomas; 08-12-2005 at 04:12 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1