bt.ionut Posted March 17, 2013 Report Share Posted March 17, 2013 Am urmatorul cod: Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick ProgressBar1.Value = ProgressBar1.Value + 1 If ProgressBar1.Value = 10 Then Label1.Text = "Connecting to minecraft.net" End If If ProgressBar1.Value = 60 Then Label1.Text = "Succefully connected!" End If If ProgressBar1.Value = 70 Then Label1.Text = "Change username..." End If If ProgressBar1.Value = 100 Then Label1.Text = "Done!" ProgressBar1.Value = 100 Timer1.Stop() End If End SubBara se incarca prea repede, cum o fac sa se incarce mai greu ?Am cautat pe net, am incercat sa modific Value insa primesc nise erori, in alte cazuri doar se blocheaza.Merci. Quote Link to comment Share on other sites More sharing options...
daNNy.bv Posted March 17, 2013 Report Share Posted March 17, 2013 pune un interval mai mare la timer1 Quote Link to comment Share on other sites More sharing options...
bt.ionut Posted March 17, 2013 Author Report Share Posted March 17, 2013 (edited) pune un interval mai mare la timer1Logic, insa cum ?Edit:. Rezolvat ! Edited March 17, 2013 by bt.ionut Quote Link to comment Share on other sites More sharing options...
Maximus Posted March 18, 2013 Report Share Posted March 18, 2013 Timer1.Interval = 60000 = 1min Quote Link to comment Share on other sites More sharing options...
evangilbort Posted April 29, 2013 Report Share Posted April 29, 2013 (edited) A number of large application such as setups, database driven application and file transfer we can used the progress bars. A VB in the progress bar can be included in through the microsoft windows common controls components. Edited May 1, 2013 by evangilbort Quote Link to comment Share on other sites More sharing options...