If you check the code I posted, you'll notice that I keep track of the LastNum (Last number) that X had been. You are not doing this.
For x = n + 1 To n * 2 If n is always 3, x will always be from 3 to 6. Try it.. replace n with the number in the textbox. The for loop will always produce the same result. You need to somehow keep track of the last number that X was.... sort of like:
For I = LastNum To NewNum
print I
Next I
LastNum = I
Then, you will have to calculate "NewNum" so you know how far you are supposed to loop until
NewNum = LastNum + Val((Text1.Text) - 1). Furthermore, LastNum needs to be public (or static, but public is easier in this case).