Whats the best way to create a grid of arbitrary cell count, where each cell needs only be fully filled or empty in Windows (using the win32 api)
In a past project with similar requirements, I just made every cell a child window. I could easily reuse that code I suppose.
But as I did then, I wonder if this is the most efficient method. Performance isn't really an issue I think. But my sensibilities still want the cleanest solution.
Ideas?