Question String Repeat Process

griffithdesign

Active member
Joined
Sep 17, 2008
Messages
34
Programming Experience
Beginner
Here is my string: (not real just made up)
VB.NET:
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        WebBrowser1.Hide()
    End Sub

Now if I want to repeat that string the ammount of times I say in TextBox1, how do I code that with that string code above?
 
Please post in the most appropriate forum for the topic, not just the first one you come to. Moved.

That's not a string. It's a snippet of code.

What does "repeat that string" mean? You're going to have to explain because we can't read minds.
 
jmcilhinne,
My god calm down. Im 15 im not the best person in the world so calm down.
VB.NET:
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        WebBrowser1.Hide()
    End Sub
How do I make the code above repeat iself the number of times someone puts in textbox1?
 
Back
Top