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

Search:

Type: Posts; User: Inigo Montoya

Search: Search took 0.03 seconds.

  1. Re: Load user input into 10x4 rectangular array

    Ok, so I have it mostly figured out now, thanks to everyone's help. I declared the array and am using the variable "r" to designate the rows. You can see in the code where I am loading each field...
  2. Re: Load user input into 10x4 rectangular array

    I get an error that < cannot be applied to operands of type int



    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using...
  3. Re: Load user input into 10x4 rectangular array

    Still not really getting this, I just need someone to explain how it's supposed to work and help me integrate it into my code above.
  4. Re: Load user input into 10x4 rectangular array

    This is how I loaded input from a form with a basic 5 element array, how would I modify this to enter into a 10x4 array?



    for (int i = totals.Length - 1; i > 0; i--)
    { ...
  5. Load user input into 10x4 rectangular array

    Ok, I am working on a form that calculates the future value of an investment. I need to add a 10x4 rectangular array (required) and then display the results when the user clicks exit. I am having...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured