Click to See Complete Forum and Search --> : SHBrowseForFolder title(Urgent)


Sankar
March 30th, 1999, 11:41 AM
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

Ron Stegall
March 30th, 1999, 12:24 PM
Try using SetWindowText("Your Text Here"); on the dialog

Agha Shujaa Khan
August 12th, 2001, 12:43 PM
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