input multiple numbers into textbox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mk112
    New Member
    • Mar 2010
    • 2

    input multiple numbers into textbox

    Is there any way we could input many numbers in a Textbox and Parse it so it will read that many number, like the way we can use getchar to do this in C (for example in put : 1 2 3 and it reads number 1, number 2, number 3)
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    Yes there is. Perhaps the easiest would be to use string.split to break the text into an array, then loop through that array and parse each element.

    Comment

    • mk112
      New Member
      • Mar 2010
      • 2

      #3
      thanks :D I'll try it

      Comment

      Working...