[Solved] Setting Checkbox Options C++ [closed]
How can I give the CreateWindowW function multiple strings for multiple checkboxes? CreateWindow() can only create 1 window/control per call. You will have to manually split up the strings and then call CreateWindow() separately for each individual checkbox. Assuming your vector<string> contains the checkbox strings, you can pass the vector to your window via the … Read more