U
UnknownUserAce
Guest
In order for me to increment a Number, Its just too easy.
Heres How to Increment a Number.
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
TextBox1.Text = "0"
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If Timer1.Enabled = True Then
Timer1.Enabled = False
Else
Timer1.Enabled = True
End If
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
TextBox1.Text = TextBox1.Text + 1
SendKeys.SendWait(TextBox1.Text & "{Enter}")
End Sub
End Class
How Do I do this with Characters or a String of Text?
I want to do somthing like this...
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 1g, 1h, 1i, 1j, 1k, 1l, 1m, 1n, 1o, 1p, 1q, 1r, 1s, 1t, 1u, 1v, 1w, 1x, 1y, 1z, 20, 21, ect, ect.
How do I do that...? I could Increment a number with my eyes closed, its too easy, I wanna learn more cooler and helpful stuff with VB.NET, the next thing I wanna learn is how to increment a string of text and numbers.
I apreciate the help I get from MSDN. If I learn helpful and useful stuff on MSDN, I teach others, so everyone benifits from the stuff I learn, and the stuff I get help with from MSDN.
Could you please help me?
Thank You MSDN.
Continue reading...
Heres How to Increment a Number.
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
TextBox1.Text = "0"
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If Timer1.Enabled = True Then
Timer1.Enabled = False
Else
Timer1.Enabled = True
End If
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
TextBox1.Text = TextBox1.Text + 1
SendKeys.SendWait(TextBox1.Text & "{Enter}")
End Sub
End Class
How Do I do this with Characters or a String of Text?
I want to do somthing like this...
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1a, 1b, 1c, 1d, 1e, 1f, 1g, 1h, 1i, 1j, 1k, 1l, 1m, 1n, 1o, 1p, 1q, 1r, 1s, 1t, 1u, 1v, 1w, 1x, 1y, 1z, 20, 21, ect, ect.
How do I do that...? I could Increment a number with my eyes closed, its too easy, I wanna learn more cooler and helpful stuff with VB.NET, the next thing I wanna learn is how to increment a string of text and numbers.
I apreciate the help I get from MSDN. If I learn helpful and useful stuff on MSDN, I teach others, so everyone benifits from the stuff I learn, and the stuff I get help with from MSDN.
Could you please help me?
Thank You MSDN.
Continue reading...