Consulting

Results 1 to 5 of 5

Thread: Progress Bar

  1. #1

    Progress Bar

    I have a file that takes approximately 5-10 secs to save. Is it possible to display a progress bar to represent how much time is left until the file is saved?

  2. #2
    To my knowledge progress bars are done withen loops or large amounts of code.
    And if its only a few seconds there realy is not any point.
    Reserve the use of a progress bar for when a routine will take 30min +
    All the best

  3. #3
    Quote Originally Posted by D_Rennie
    To my knowledge progress bars are done withen loops or large amounts of code.
    And if its only a few seconds there realy is not any point.
    Reserve the use of a progress bar for when a routine will take 30min +
    All the best
    Forgive my ignorance, but if I click the save button or have it automatically saved when I close the file, how do call the progress bar. by the way, When I started with a file with very little data, it was a non-issue, but as I have added a lot more data to the file, the save time has gotten longer and longer. So as of now, it takes 20-25 seconds to save.

  4. #4
    im guessing that your save procudure is made up of one or two lines.
    IMO forget about the progress bar. There is not enough code to make it worth while. Or the code structure is not suited for a progress bar.

    Someone may prove me wrong though.

  5. #5
    VBAX Mentor tpoynton's Avatar
    Joined
    Feb 2005
    Location
    Clinton, MA
    Posts
    399
    Location
    my method is to show a modeless userform before the save saying 'be patient', then after the save statement unload it. This assumes the save is being done through code.

    There's nothing to track the progress of the save that I'm aware of, so using a progress bar is not possible.

Posting Permissions

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