For starters just the basics to make the ProgressBar Move. I have created a button and placing code on it when it clicks to moved the ProgressBar1. I have tried, but don't think I'm using the correct syntax because I get errors.
I have tried:
ProgressBar1 = 25
ProgressBar1 Value=25
ProgressBar1 Value=(25)
In more detail, I created a small applications that downloads images from the internet, and when it's downloading the files I would like it t show the progress. Here is an example of the code:
' Getting images from WTVA Weather Center
IF Download(Img1, "radarr.jpg", 10) THEN
END IF
IF Download(Img2, "radarn.jpg", 10) THEN
END IF
IF Download(Img3, "warning.jpg", 10) THEN
END IF
IF Download(Img4, "7day.jpg", 10) THEN
END IF
IF Download(Img5, "cur_temp.jpg", 10) THEN
END IF
IF Download(Img6, "temp_hi.jpg", 10) THEN
END IF
IF Download(Img7, "temp_lo.jpg", 10) THEN
END IF
IF Download(Img8, "humidity.jpg", 10) THEN
END IF
IF Download(Img9, "dewpoint.jpg", 10) THEN
END IF
IF Download(Img10, "winds.jpg", 10) THEN
END IF
IF Download(Img11, "almanac.jpg", 10) THEN
END IF
Be nice if to wold update the ProgressBar1 in between images.
Thanks you for any help.
Kent