Hi,
I have One Edit Box on the dialog..
I want to set its property ES_MULTILINE throught the code.
I cannot change its properties straight way on dialog..
It has to be done through code..
Is there any option where I can create the Object and Subclass It to the Edit box on dialog?

I mean something like..
CEdit *My_Edit;
My_Edit->Create(...,....ES_MULTILINE,...,...);
and then subclass it with the Edit box I have on the dialog?
If this is possible then What should I put in CRect and nID and parent
parameters in Create method of CEdit?