Thanks a lot brother I have use it and it’s a success
@ProgrammingKnowledge10 жыл бұрын
@jram4271Ай бұрын
Very clear, thank you.
@PatMcDonald419 жыл бұрын
Clear and excellent. Thank you, sir.
@eltonhana81795 жыл бұрын
thanks a loooot, i will use what i saw into my project for university, a small things makes the difference!!!
@steveblacksun79642 жыл бұрын
Thank you very much Sir, this was very helpful.
@samanthapennington42322 жыл бұрын
Very Nice and Simple Program. Perfect.
@mateogong326310 жыл бұрын
Great Tutorial :3 This got me into visual studio!
@desfity49256 жыл бұрын
i love your indian acent
@shyamkachhadiya49645 жыл бұрын
hello sir, thankyou for such a video series..... i am being well nice thought by your videos....
@mohammadshameer43025 жыл бұрын
may allah give you sirat e mustaqeem the right path
@arthurjohnm.saberon41269 жыл бұрын
Thanks Bro For the video
@RajeevKumar-nl4yy10 жыл бұрын
thanks for sharing....
@jayzervillanueva5959 жыл бұрын
can you teach me how to pause and resume the time in timer...?
@jooryalhamed9388 жыл бұрын
good
@blikadek26866 жыл бұрын
Thanks sir.....
@yahyabenabdellah5 жыл бұрын
Thx
@btb_funkyostrich11295 жыл бұрын
what i want is that i have a picture box and i need it show for only 2 seconds
@gideonengelbrecht87234 жыл бұрын
textbox1.text = textbox1.txt + 1 does not work for me. How can you add 1 to text?
@AdobeSupremer12 жыл бұрын
do += that will work
@manarsila96998 жыл бұрын
I want to know how to pause the timer without using the button and do it with a certain time using the codes
@maxperson54856 жыл бұрын
You can use if i = t then timer1.stop() end if
@quianimations83086 жыл бұрын
its work. Thanks
@harshagrawal3535 жыл бұрын
nahi chal raha bhai abe vo infinite loop keliye bol raha he
@riyaahuja19968 ай бұрын
source code?
@JacobPutzier9 жыл бұрын
Doesn't work
@shyamkachhadiya49645 жыл бұрын
try again guys, it just worked, well also i have modified it code is below
@shyamkachhadiya49645 жыл бұрын
Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 'add(CInt(TextBox1.Text), CInt(TextBox2.Text)) MessageBox.Show("The sum is " & sum(TextBox1.Text, TextBox2.Text)) End Sub Private Sub add(ByVal a As Integer, ByVal b As Integer) Dim sum As Integer sum = a + b MessageBox.Show("Addition is " & sum) End Sub Private Function sum(ByVal a As Integer, ByVal b As Integer) Return a + b End Function End Class