Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~465 People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for AirWave

I have 9 buttons in Form1.Designer.cs. And I want to use them in another class which is Puzzle.cs. What I've done is, [CODE] private int PUZZLESIZE = 3; private int col, row; private Button[,] buttons = new Button[3, 3] { { Form1.button1, Form1.button2, Form1.button3 }, { Form1.button4, Form1.button5, Form1.button6 }, …

Member Avatar for mazzica1
0
116
Member Avatar for AirWave
Member Avatar for Momerath
0
60
Member Avatar for AirWave

Hi,everyone. The problem is when I input "m" or "p" or other single input, it gives "ArgumentOutOfRangeException" in the line "int i = Int32.Parse(command.Substring(1, 1));". "if(command.Substring(0, 1) == "r" && i<= numCols)" these kind of condition use when the input like "r1,r2,r3...", then the following method takes number part as …

Member Avatar for kplcjl
0
178
Member Avatar for AirWave

Hello everyone, I'm required to print a puzzle which in the form of row*col. And my code can do that except when row and col are the same number. How can I fix that? And another question is, how can I store these values into a 2D array??? Because later …

Member Avatar for Teme64
0
111

The End.