|
-
Nov 5th, 1999, 09:26 PM
#1
Thread Starter
Junior Member
Hello, I am trying to make a Progress Bar set up so that what number you have written in text1.text will equal the length of the progress bar... and I would also like the progress bar to go at a (0.1) speed, so it is as to wait for it to send information
thank you for who answers
-
Nov 5th, 1999, 11:08 PM
#2
New Member
assuming:
PROGBAR1.MIN = 1
PROGBAR1.MAX = 100
PROGBAR1.SCROLLING = ccSCROLLINGSMOOTH '1
when the text is changed in text1, then you could do:
PROGBAR1.VALUE = VAL(TEXT1.TEXT)
the progressbar value, min, and max are (floating point) SINGLE values, so increments of 0.1 should work.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|