Results 1 to 6 of 6
  1. #1
    semperchristus is offline Novice
    Windows 7 64bit Access 2013
    Join Date
    Jun 2014
    Posts
    2

    Need to make a completion progress indicator on an Access 2013 form

    I am new to Access, but have created a form that works well for my needs. My only hurdle is that I need to have a form completion progress indicator (10% through 100%) of some sort showing the progress of the form user and his or her completion of the entire form. The form has a large number of check boxes that I would like to use as "mileposts" for the progress. Can someone please suggest a method and walk me through the steps in creating such a thing, if possible? Thanks in advance!

  2. #2
    burrina's Avatar
    burrina is offline VIP
    Windows 8 Access 2010 32bit
    Join Date
    Oct 2012
    Location
    Freeport,Texas
    Posts
    1,383

    Progress Bar

    This feature comes with it's own drawbacks, FYI. Time it takes to complete the code will it match the actual event? etc... That said, here is an example I found.

    HTH
    Attached Files Attached Files

  3. #3
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,726
    Here's a free video tutorial on a progress bar approach. Access is single threaded, so any Progress approach will have tostop the current process; show progress; then go back to original process; and repeat ...etc.

  4. #4
    semperchristus is offline Novice
    Windows 7 64bit Access 2013
    Join Date
    Jun 2014
    Posts
    2
    Thanks so much for the rapid reply. What I really need is as follows: My form has ten check boxes in various locations. When check box #1 is "checked", I need "10%" to appear in a text box (labeled % completed) at the top of the form. When check box #2 is "checked, I need "20%" to appear in the same text box and so on up to "100%" when check box #10 is "checked". Thanks for any examples you could provide.

  5. #5
    burrina's Avatar
    burrina is offline VIP
    Windows 8 Access 2010 32bit
    Join Date
    Oct 2012
    Location
    Freeport,Texas
    Posts
    1,383
    So, what you are really asking for is not a progress bar but rather an If this, then that! See Example Below, modify to suit your needs.
    If (Me.chk1) = True Then
    Me.lbl1.Caption = "10%"
    End If
    HTH

  6. #6
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,726
    Did you watch the video suggested in post #3?

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 4
    Last Post: 02-12-2014, 12:49 PM
  2. Outlook 2013 + Access 2013 + HTML
    By Yann63 in forum Programming
    Replies: 2
    Last Post: 11-26-2013, 02:39 PM
  3. Access 2013 display of Form View
    By iball1113 in forum Access
    Replies: 9
    Last Post: 11-08-2013, 03:30 PM
  4. Access 2013 Web App with Sharepoint 2013
    By miguel.escobar in forum Access
    Replies: 7
    Last Post: 06-17-2013, 09:03 AM
  5. Replies: 3
    Last Post: 05-20-2009, 04:58 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums