hi ,
I am using SHBrowseForFolder for a directory selection . The problem
is , the dialog title is "Browse for folder" which I don't want . I want
to put my own title . Is there any way to do this ?
Thanks
sankar
Printable View
hi ,
I am using SHBrowseForFolder for a directory selection . The problem
is , the dialog title is "Browse for folder" which I don't want . I want
to put my own title . Is there any way to do this ?
Thanks
sankar
Try using SetWindowText("Your Text Here"); on the dialog
typedef struct _browseinfo {
HWND hwndOwner;
LPCITEMIDLIST pidlRoot;
LPTSTR pszDisplayName;
LPCTSTR lpszTitle;
UINT ulFlags;
BFFCALLBACK lpfn;
LPARAM lParam;
int iImage;
} BROWSEINFO;
static TCHAR* pTitle = _T("Sankar is the best");
BROWSEINFO bi;
bi.lpszTitle = pTitle