Комментарии:
thanks a lot!!
Ответить@OperatorJaell use a timer
ОтветитьWhich Camera do you use? It is Camcorder? Or Another? Where do you download it? Can you send me a download link?
ОтветитьYou can even run the progressbar with a timer
Ответитьprogressbar1.value = progressbar1.value + 10 can be shortened into progressbar1.value += 10
ОтветитьI like the tutorials, but it seems like every single tutorial host has the microphone directly inside his throat. Slow down man... get a sip of water or something.
Ответитьi love your tutorials but i hate your voice and the way you was speaking....
Ответитьgtfo
ОтветитьNo thanks you go.
ОтветитьHi Im usinng the 2010 version, all your the previous tutorials have wroked fine yet this one wont work could u plz help me
Ответитьactually got it to work
Ответитьwat version r u usin, cos if its 2010 it workls alright
Ответитьi have a question, what is the code for setting a timer on it, so that the bar will progress by itself
ОтветитьPrivate Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load Timer1.Start() End Sub Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick ProgressBar1.Value = ProgressBar1.Value + 1 If ProgressBar1.Value = 99 Then Timer1.Stop()
Ответить@nightdutnyl it does work.. but it shows like 1000000 of pops up? how do i stop it?
Ответитьthanks man
Ответитьthanks lot for this tutorials
ОтветитьHi, I would like to know, if we can change the color to indicate the progress? eg: 10 = red, 25 = orange, 75 = orange. Tq for the help. Appreciate it much.
ОтветитьWhen i set: If ProgressBar1.Value = 2000 Then MessageBox.Show("Whatever") End If about 10000 windows saying "Whatever" appear! PLEASE HELP ME ASAP!!
ОтветитьWhen you gonna make the advanced one? :)
ОтветитьHow do i make it when i click in the button the prograss fills up? Please reply
ОтветитьHow do you have custom thumnails? You're not a partner o.o
Ответитьhi ! i wanna ask you if i wanna add 10 until full =100 and than it close Form suddenly . can you tell me :D?
ОтветитьYou can use a timer. timer1.start on form load in the timer you put if progressbar1.value = 10 then progressbar1.backcolor = color.red elseif progressbar1.value = 25 then progressbar1.backcolor = orange elseif progressbar1.value = 75 then progressbar1.backcolor = orange end if
Ответитьcan you tell me how to send email of the typed form ? (make a tut please if you have one already please do tell me) i want to make my sites application thanxx
Ответитьcan you make a led shifter with 8 leds and a hscrollbar ????
Ответитьcan you teach us the advance one ? progress bar
Ответитьhow could I create a progress bar for when a mouse goes over a certain location it adds 10 until it reaches it's final destination?
Ответитьcreate a button....text it as "slow" now then code in this button: Timer1.interval = 500 500 is the time interval you can change this according to your wish....... Happy coding!!!!!
Ответитьsuperb one sir................... and if we have to make a progress of a progressbar automaticlay like 1,2,3,4,5....100 one by one without toching a button then what to do.........?
Ответить/watch?v=tD4HaQ7yiiI I think this is what alot of you were looking for! change the progressbar color!
ОтветитьWhy does it happens that if i click after the progress is completed it hangs or i say shows an error.........Rply fast.
ОтветитьSaying reply fast will not get you the best results. Go to hell.
ОтветитьHere is the handler for the button, when you reach 100 (Part1, see my reply ro self): Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click ' Initializes variables to pass to the MessageBox.Show method. Dim Message As String = "Process completed. Exit the aplication?" Dim Caption As String = "We're outta here" Dim Buttons As MessageBoxButtons = MessageBoxButtons.YesNo Dim Result As DialogResult
ОтветитьHere is the handler for the button (Part 2): If ProgressBar1.Value < 100 Then ProgressBar1.Value = ProgressBar1.Value + 10 Else ' Displays the MessageBox Result = MessageBox.Show(Message, Caption, Buttons) ' Gets the result of the MessageBox display. If Result = System.Windows.Forms.DialogResult.Yes Then ' Closes the parent form. Me.Close() End If End If End Sub
Ответитьhow do you instal visual basic 2010 on tablet samsung galaxy tab 2?
Ответитьnot with this, you would need a third party tool
Ответитьalways simplify eg.. ProgressBar1.Value += 10 instead of.. ProgressBar1.Value = ProgressBar1.Value + 10
Ответитьwhat software r u using for recording answer me plzzzzzzzzzzzzzzz
ОтветитьThankyou
ОтветитьHow can I make it so,that a button is only clickable,if something like activates it?
ОтветитьTheGreyLP You are going to want to create a function on what it is that you want the button to do then create an If Then statement inside the buttons code.
In this example, you have to have the Checkbox checked for the button to do something when you click it. So if the Checkbox is not checked then nothing will happen if you click the button.
I created a function that will pull up a messagebox saying, "Hello" when you click Button1 ONLY if Checkbox1 is checked.
Hopefully this helped you. :)
-Fry
Code:
Private Function Message()
Msgbox("Hello")
End Function
Private Sub Button1_Click()
If Checkbox1.checked = true then
Message()
elseif Checkbox1.checked = false then
end if
End sub
thxs
Ответитьthank you my friend
Ответитьthanks video is amazing but i need a automatically execution of progress bar whenever my pc busy for some execution.
ОтветитьNice explanation. easily we can implement this in our project..
Ответитьwhen is the advanced progress bar video coming up?! please, need it soon. thank you.
ОтветитьThanks i really didnt know where to start.
Ответитьi combind the Progress Bar with an if funktion and got it to close itselv when it is by 100 percent.
ProgressBar1.Value = ProgressBar1.Value + 10
If ProgressBar1.Value = 100 Then
MessageBox.Show("Finished")
Me.Close()
End If