John W. Colby
jwcolby at colbyconsulting.com
Thu Apr 15 08:59:02 CDT 2004
Just look at the demo setup code. It's really pretty easy to use. John W. Colby www.ColbyConsulting.com -----Original Message----- From: accessd-bounces at databaseadvisors.com [mailto:accessd-bounces at databaseadvisors.com]On Behalf Of S D Sent: Thursday, April 15, 2004 9:34 AM To: Access Developers discussion and problem solving Subject: RE: [AccessD] Show proces-step?! <SOLVED> Hi John, i've downloaded the file...looks pretty complex though but solid! Jeffrey, thanks for you're idea. If johns demo is to complex for me you'res sounds fine. Thnx again. Sander "John W. Colby" <jwcolby at colbyconsulting.com> wrote: Sander, I have a progress form on my web site that can be opened and methods of the form called to display messages, increment a progress bar etc. Click the Misc Demos button. The file is C2DbDemoWaitform A2K or A97. John W. Colby www.ColbyConsulting.com One option is to place a label on your form and update it as you are progressing through. dim currentfilenumber as interger dim totalfilenumber as interger dim progressmessage as string totalfilenumber = <<Total File Count>> currentfilenumber = <<Current File Number Being Processed>> progressmessage = "Processing File: " & currentfilenumber & " of " totalfilenumber & chr(13) & chr(10) progressmessage = progressmessage & "Filename: " & currentfilename Another option is to look in the help about using the Status Bar. me.lblProgress.Capation = progressmessage Doevents -----Original Message----- From: accessd-bounces at databaseadvisors.com [mailto:accessd-bounces at databaseadvisors.com]On Behalf Of S D Sent: Thursday, April 15, 2004 8:43 AM To: accessd Subject: [AccessD] Show proces-step?! Hi group, I want the user to see what's currently going in the application. So if a user wants to proces 250 files (5-10 minutes) I want to show what file is currently being processed (me thinks this being pretty nasty English...sorry for that). Something like: Processing File: 9 of 21 Filename: 100_54_20040412.dat Does anybody have any tips/examples? TIA Sander --------------------------------- Do you Yahoo!? Yahoo! Tax Center - File online by April 15th -- _______________________________________________ AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com -- _______________________________________________ AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com --------------------------------- Do you Yahoo!? Yahoo! Tax Center - File online by April 15th -- _______________________________________________ AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com