Click here to Skip to main content
15,921,959 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Zip a folder Pin
Rajesh R Subramanian8-Oct-09 20:48
professionalRajesh R Subramanian8-Oct-09 20:48 
GeneralRe: Zip a folder Pin
kilt8-Oct-09 23:15
kilt8-Oct-09 23:15 
Questioncricheditctrl borders Pin
prithaa8-Oct-09 19:39
prithaa8-Oct-09 19:39 
AnswerRe: cricheditctrl borders Pin
prithaa8-Oct-09 19:41
prithaa8-Oct-09 19:41 
QuestionString Problem Pin
Hari_168-Oct-09 18:45
Hari_168-Oct-09 18:45 
AnswerRe: String Problem Pin
Jijo.Raj8-Oct-09 19:08
Jijo.Raj8-Oct-09 19:08 
GeneralRe: String Problem Pin
Hari_168-Oct-09 19:18
Hari_168-Oct-09 19:18 
GeneralRe: String Problem Pin
CPallini8-Oct-09 20:53
mveCPallini8-Oct-09 20:53 
GeneralRe: String Problem Pin
Hari_168-Oct-09 22:20
Hari_168-Oct-09 22:20 
GeneralRe: String Problem Pin
CPallini8-Oct-09 22:35
mveCPallini8-Oct-09 22:35 
QuestionRe: String Problem Pin
David Crow9-Oct-09 3:46
David Crow9-Oct-09 3:46 
AnswerRe: String Problem Pin
CPallini13-Jan-10 11:46
mveCPallini13-Jan-10 11:46 
AnswerRe: String Problem Pin
David Crow9-Oct-09 3:48
David Crow9-Oct-09 3:48 
Questionhelp UpdateLayeredWindow problem Pin
gamja8-Oct-09 16:43
gamja8-Oct-09 16:43 
QuestionRotating bitmap. Pin
Nikz28-Oct-09 15:28
Nikz28-Oct-09 15:28 
AnswerRe: Rotating bitmap. Pin
«_Superman_»8-Oct-09 17:35
professional«_Superman_»8-Oct-09 17:35 
GeneralRe: Rotating bitmap. Pin
Nikz29-Oct-09 10:13
Nikz29-Oct-09 10:13 
QuestionWhat kind of reason will cause CWnd derived class failed to be created? Pin
transoft8-Oct-09 11:31
transoft8-Oct-09 11:31 
AnswerRe: What kind of reason will cause CWnd derived class failed to be created? Pin
«_Superman_»8-Oct-09 11:58
professional«_Superman_»8-Oct-09 11:58 
GeneralRe: What kind of reason will cause CWnd derived class failed to be created? Pin
transoft8-Oct-09 12:10
transoft8-Oct-09 12:10 
GeneralRe: What kind of reason will cause CWnd derived class failed to be created? Pin
«_Superman_»8-Oct-09 12:16
professional«_Superman_»8-Oct-09 12:16 
GeneralRe: What kind of reason will cause CWnd derived class failed to be created? Pin
transoft8-Oct-09 12:29
transoft8-Oct-09 12:29 
QuestionMFC application using different Windows theme Pin
Myzrael8-Oct-09 8:50
Myzrael8-Oct-09 8:50 
AnswerRe: MFC application using different Windows theme Pin
transoft8-Oct-09 11:36
transoft8-Oct-09 11:36 
QuestionIs there any way ,that i could access to special icons like "My Document" Folder icon or "Contacts" Folder Icon or even "My Computer" Icon of the operating system. Pin
A&Ms8-Oct-09 8:37
A&Ms8-Oct-09 8:37 
I know how to access system Image list using this function

HIMAGELIST GetSystemImageListOfSmallIcons()const {
	HIMAGELIST himl;
	SHFILEINFO sfi;
	himl = (HIMAGELIST) (::SHGetFileInfo( _T(""), 0, &sfi, sizeof(sfi), SHGFI_SYSICONINDEX | SHGFI_SMALLICON));
	return himl;
}


but is there any way ,that i could access to special icons like "My Document" Folder icon or "Contacts" Folder Icon or even "My Computer" Icon of the operating system.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.