Assume that a dialog Box has a Edit Control.

To access the edit control we should define a member variable. What is the best way of definning Member variable ?

Code:
CEdit* m_pedtName;  // Pointer
OR

Code:
CEdit m_edtName;
or anythin else ?

What is most suitable if Dialog box has lot of controls ?