|
-
March 30th, 1999, 12:41 PM
#1
SHBrowseForFolder title(Urgent)
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
-
March 30th, 1999, 01:24 PM
#2
Re: SHBrowseForFolder title(Urgent)
Try using SetWindowText("Your Text Here"); on the dialog
-
August 12th, 2001, 12:43 PM
#3
Re: SHBrowseForFolder title(Urgent)
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|