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

Search:

Type: Posts; User: sadslapper

Search: Search took 0.03 seconds.

  1. Re: IndexOutOfRangeException after making class indepedant

    I changed it to look like this:


    public class SeatManager
    {
    private int m_totNumOfRows;
    private int m_totNumOfCols;
    private int m_totNumOfSeats;
    private string[,] m_nameMatrix;...
  2. [RESOLVED] IndexOutOfRangeException after making class indepedant

    Hello, I'm a rook when it comes to programming. Recently, I made this little things as a school project. I later read that the SeatManager class must be indepedant and changed my code accordingly....
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured