SHBrowseForFolder來初始化選擇目錄

2021-04-12 22:14:21 字數 720 閱讀 2532

ccriticalsection cs;

cstring g_strcurrdir;

void setcurrdirforshbrowseforfolder(const cstring& strcurrdir)

int callback fecfolderproc(hwnd hwnd, uint nmsg, lparam, lparam lpdata)

if (_t("") != szpath.left(2)) // shbrowseforfolder does not like unc path

}return 0;

}cstring browseforfolderbysh(lpctstr lptitle, cwnd* pwnd, cstring strcurrdir)

pidl = shbrowseforfolder( &browsedir );

strfolderpath.releasebuffer();

strfolderpath.empty();

if ( pidl != null )

return strfolderpath;

} 主要是用乙個**函式處理特定的訊息。

其它例子:

c 使用初始化列表來初始化字段

includeusing namespace std class student1 student1 int i b i a b 異常順序 發現a的值為0 b的值為2 說明初始化僅僅對b有效果,對a沒有起到初始化作用 student1 int a,int b a a b b 正常順序 發現a b 2...

初始化 指定初始化

id alloc 物件的誕生過程,主要是從作業系統獲得一塊足夠大的記憶體,以存放該類的全部例項變數,並將其指定為存放記憶體物件的實力變數的位置。alloc方法同時將這塊記憶體全部設定為0。結果是 bool變數初始化為no,所有的int型別變數為0,float變數為0.0,所有的指標為nil.obje...

初始化 1 預設初始化 列表初始化

初始化的基本概念 事實 初始化和賦值是兩個完全不同的操作。初始化,是建立變數時賦予其乙個初始值。賦值,是把物件的當前值擦除,用乙個新值代替。列表初始化 p39 作為c 11新標準的一部分,用花括號 來初始化變數得到了全面應用。出於某些原因,這種初始化的方式叫做列表初始化。現在,無論是初始化物件還是某...