|
안녕하세요
빌더 버전이 5가 아니신가여...
제게는 있는데여.. shlobj.h에 있슴다.. 혹시나해서 여기다 적어 드립니다..
그럼 즐거운 하루 되세여..
// Browsing for directory.
#define BIF_RETURNONLYFSDIRS 0x0001 // For finding a folder to start document searching
#define BIF_DONTGOBELOWDOMAIN 0x0002 // For starting the Find Computer
#define BIF_STATUSTEXT 0x0004 // Top of the dialog has 2 lines of text for BROWSEINFO.lpszTitle and one line if
// this flag is set. Passing the message BFFM_SETSTATUSTEXTA to the hwnd can set the
// rest of the text. This is not used with BIF_USENEWUI and BROWSEINFO.lpszTitle gets
// all three lines of text.
#define BIF_RETURNFSANCESTORS 0x0008
#define BIF_EDITBOX 0x0010 // Add an editbox to the dialog
#define BIF_VALIDATE 0x0020 // insist on valid result (or CANCEL)
#define BIF_NEWDIALOGSTYLE 0x0040 // Use the new dialog layout with the ability to resize
// Caller needs to call OleInitialize() before using this API
#define BIF_USENEWUI (BIF_NEWDIALOGSTYLE | BIF_EDITBOX)
#define BIF_BROWSEINCLUDEURLS 0x0080 // Allow URLs to be displayed or entered. (Requires BIF_USENEWUI)
#define BIF_BROWSEFORCOMPUTER 0x1000 // Browsing for Computers.
#define BIF_BROWSEFORPRINTER 0x2000 // Browsing for Printers
#define BIF_BROWSEINCLUDEFILES 0x4000 // Browsing for Everything
#define BIF_SHAREABLE 0x8000 // sharable resources displayed (remote shares, requires BIF_USENEWUI)
경호 님이 쓰신 글 :
: 안녕하세요 경호입니다.
:
: BROWSEINFO 구조체의 flag중 BIF_NEWDIALOGSTYLE를 쓰려고 하는데 헤더파일에 저의가
: 안되있네여.... 쩝
:
: 혹시 정의되어 있는 헤더파일을 가지고 계신분 있나요...
: 위의 플래그는 _WIN32_IE 가 5.0이상에서 정의되어 있는것으로 알고 있는데 쩝...
: 제 헤더파일에는 없더군요....
:
: Shell Programing 하시는 분중에 아시는 분 있으면 좀 갈켜주세요 ^^
: 그럼 이만 줄이겠습니다.
|