Hi,
I want to change the caption of a CFileDialog. I've tried to call SetWindowText in the OnInitDialog method of my derived class. But it doesn't work.
Is there anyone who can help me out ?
Printable View
Hi,
I want to change the caption of a CFileDialog. I've tried to call SetWindowText in the OnInitDialog method of my derived class. But it doesn't work.
Is there anyone who can help me out ?
Hi Frankie,
you can set a title by using the field lpstrTitle of the m_ofn data member. It's an LPCSTR.
HTH
Martin
thanks a lot !