The problem is if the issue is an MFC bug/feature in which case you might have to brute force the init. I can see not calling OnInitDialog() but you could create a base class with a MyInit() or...
If the OnInitDialog() isn't behaving like you would expect, is there any disadvantage to just calling m_Dialog.OnInitDialog() in you CreateContents() function after you have called Create() ?
When I change the size of my combo box, I guess I am seeing the same thing. It's just that my bitmaps are a little wider than my combo box, so I don't see the empty string being highlighted. So I...
I attached a test app I was playing with last year ... I was trying to establish a call and play a wav file ... I haven't had time to play with it since, but it will at least be a starting place for...
All you have to do is get the parent of the currently selected item and then just index down the child list of the parent. It would be something like this ...
Well, how do you know who the message is coming from? Either it is predefined, in which case you should already know the SMTP server or you need to get a "From" address from the user at which time...
The Boost Random Number Library provides a vast variety of generators and distributions to produce random numbers having useful properties, such as uniform distribution.
...
I have done several different things to get around this depending on what the control allows and what functionality you need from the control. A lot of controls have a right click event you can...