codes for moving bar while indicating progress in percentage (1-100)
Masterace 0 Newbie Poster
Recommended Answers
Jump to Posttry this
Private Sub cmdStart_Click() While ProgressBar1.Value < ProgressBar1.Max Do ProgressBar1.Value = ProgressBar1.Value + 1 text1.Text = (ProgressBar1.Value / ProgressBar1.Max) * 100 & "%" Loop Wend End Sub
All 3 Replies
abu taher 34 Practically a Posting Shark
kinwang2009 7 Posting Whiz in Training
avirooge 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.