Two very simple questions but I wanted to see how others do these 3
things regarding wxMessageDialog....
1) What's the best way to write the message if it is going to be a
long one (several lines)? I find that if I put the message all on one
line, that ensures it will not be badly broken in the dialog, but of
course a long message means the text runs way off the screen, and I
prefer it to be < 80 characters. Trying triple quotes or \n has
sometimes caused odd line breaks in the dialog text, so I thought I'd
ask what others do. Also, on this same note, I'd like something that
looks good on all platforms.
2) Eventually I may convert all my wxMessageDialogs to some kind of
fancier dialog that can be positioned. Is there any efficient way to
do that other than just searching through the code for all examples
and "manually" replacing them?
3) And, on that last note, is there any best practice for managing all
the various messages one's app may send? (I'm finding they pepper my
code in an unorganized way, and think they should be more controlled).
Thanks,
Che