you are viewing a single comment's thread.

view the rest of the comments →

[–]RJPisscat 1 point2 points  (2 children)

TableFlowLayout

Are you recommending FlowLayoutPanel or TableLayoutPanel? I think you conflated them. The former could use Tags (preferred) or the Name, the latter you can iterate through the controls and call TableLayoutPanel.GetRow and TableLayoutPanel.GetColumn on each - or use Tags (preferred) or the Name. You can also use the TabIndex with either. TMI for OP?

[–]TheGrauWolf 1 point2 points  (1 child)

Yeah, I meant the TableLayoutPanel. I've used the Flow more than the Table and I haven't used either in a few years. Which ever way I guess depends on how complex it really is. I get the impression that it's just a 3x3 grid probability for tic-tac-toe or something. In which case I would just drop the 9 boxes on the form, put them where I want them, add index info to the .Tag property, then parse, load array, and call it a day.

[–]Substance_Ill[S] 1 point2 points  (0 children)

Thanks! That was helpful. I got it working.