CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: spinn

Search: Search took 0.02 seconds.

  1. Re: how to parse a text box to an integer - but....

    Just wanted to say thanks for the help. Your response prompted me to look more into arrays. And.. After figuring them out and applying them what I was doing, it turns out I didn't need to do any of...
  2. how to parse a text box to an integer - but....

    If you have a form, with multiple text boxes. R1_fred, R2_fred, R3_fred -- and would like to parse what is in that text box into an integer, you could use:


    risk = int.Parse(R1_fred.Text);
    ...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured