Im doing the auto sign up in some websites but the thing is i want to use the NumericUpDown tool in Vb.net 2008, for example i choose 10 in NumericUpDown then i click the button then it will process or rather it will create 10 accounts... please give me an idea on how to use NumericUpDown... i try to play the code using if else but im stock..... thx in advance....

Recommended Answers

All 2 Replies

>How to use NumericUpDown?

Put following code in handler of click event,

..
 For i As Integer = 1 To NumericUpDown1.Value
            'Put your code
 Next
..

thx for replying adatapost...

i try the for next but its not working... so right now im testing the do while loop... its working but the webrowser is too fast... it didnt fill up the page 2...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.