-
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
-
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.