So basically what I want to do is display the contents of a map on a child window of a parent window. Both the parts of map the key and value side by side. Should I iterate through the map save the values separately in char arrays and then pass it to the function?
CreateWindow("STATIC",MyMap,
WS_VISIBLE|WS_CHILD,150,80,300,200,hwnd,NULL,NULL,NULL);
Is there any way to do that? When I have to display an array I just simply write the name of the array and it gets displayed.. and also for strings.. What can I do for the map?