Ok, If I cannot write on a dialog during oninit by:
You can't use the function SSTextOut() in OnInitDialog(). OnInitDialog() is called before your dialog is displayed, so you can't get a valid CDC inside of it (because the dialog hasn't been drawn yet).
From the looks of it, SSTextOut() is meant to be called from an OnPaint() override.
Is there any way I can write some text to the 1st dialog screen at startup. I want to put some info on the dialog screen under program control rather then by static text!