Click here to Skip to main content
15,881,559 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello world, my question today is how can i have a loop that will loop depending what is defied in the numeric drop down menu. for a example; if the drop down menu is 3, i would like the action to loop 3 times. if the menu is 7, the action will loop 7 times. can some one help me please?
Posted
Comments
DinoRondelly 4-Mar-13 17:43pm    
Take the number from your drop down and use it as your loop counter ,,,
tony karant 4-Mar-13 18:52pm    
yes
DinoRondelly 4-Mar-13 18:53pm    
Solution below ...

1 solution

look at CINT[^]. Then use that in your loop definition i.e.
VB
for i as integer = 0 to CINT(myDropDown.SelectedValue)
   .... your code here ....
next i


my VB is rusty so this probably wont compile but you should be able to get the point.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900