Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Progress bar
Message
From
21/12/1999 09:26:49
 
 
To
21/12/1999 09:12:14
General information
Forum:
Visual FoxPro
Category:
ActiveX controls in VFP
Title:
Miscellaneous
Thread ID:
00306626
Message ID:
00306633
Views:
26
1) Define the appearance you want.
2) Set the Min value to 1 and the Max value to reccount() or whatever dictates the operations ceiling.
3) Set the value to 0.
4) Increment value as you step through your records.

Example:

with ThisForm
.ProgressBar.Min = 1
.ProgressBar.Max = reccount("table")
.ProgressBar.Value = 0

scan
.ProgressBar.Value = recno()

*!* Other processing.
endscan
endwith
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform