Alright, this question is a bit tough. My main window has a section that lets the user specify x and y dimensions, then click a 'generate' button. When this button is pressed, a new window will pop up, with a grid (or matrix if you want to call it that) of check-boxes WITHOUT their labels. The grid has the dimensions that the user specified. The user will then select whichever check-boxes they want, and click 'OK', at which point the data will be collected, and the pop-up window will close.
I currently have the window popping up properly, but I have ABSOLUTELY no idea how to create this grid of check-boxes. Perhaps using two 'for' loops? Please provide example code of creating these boxes during run-time.
For those that are curious, this is the first step of a GUI I'm working on that allows the user to generate the domain for a computational fluid dynamics simulation.