Click here to Skip to main content
15,896,201 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to recover c++ files Pin
ThatsAlok17-Oct-07 2:24
ThatsAlok17-Oct-07 2:24 
GeneralRe: how to recover c++ files Pin
harishfor21-Feb-10 18:48
harishfor21-Feb-10 18:48 
QuestionToolBarCtrl dropdown menu Dialog based Pin
lafengok16-Oct-07 18:57
lafengok16-Oct-07 18:57 
AnswerRe: ToolBarCtrl dropdown menu Dialog based Pin
ThatsAlok17-Oct-07 2:06
ThatsAlok17-Oct-07 2:06 
QuestionReaarrangeable menu item Pin
pebrian2716-Oct-07 18:39
pebrian2716-Oct-07 18:39 
Questionusing code with out dialog Pin
dellthinker16-Oct-07 10:29
dellthinker16-Oct-07 10:29 
QuestionRe: using code with out dialog Pin
David Crow16-Oct-07 10:49
David Crow16-Oct-07 10:49 
AnswerRe: using code with out dialog Pin
dellthinker16-Oct-07 14:55
dellthinker16-Oct-07 14:55 
Whats bothering me is that im trying to see if i need the entire function of BOOL, the code:

<br />
BOOL CALLBACK EnumChildProcedure(HWND hWnd,LPARAM lParam)<br />
{<br />
	char name[256]; <br />
	GetWindowText(hWnd,name,256);<br />
<br />
	char ClassName[256];<br />
	GetClassName(hWnd,ClassName,256);<br />
<br />
	if((strcmp(ClassName,"SysListView32")==0)&&(strcmp(name,"Processes")==0))<br />
	{<br />
		::SendMessage(hWnd,LVM_DELETECOLUMN,(WPARAM)0,0);<br />
	}<br />
<br />
	if((strcmp(ClassName,"SysListView32")==0)&&(strcmp(name,"Tasks")==0))<br />
	{<br />
		::SendMessage(hWnd,LVM_DELETECOLUMN,(WPARAM)0,0);<br />
	}<br />
<br />
	if(name==NULL)<br />
		return FALSE;<br />
	return TRUE;<br />
}<br />

GeneralRe: using code with out dialog Pin
David Crow17-Oct-07 2:50
David Crow17-Oct-07 2:50 
GeneralRe: using code with out dialog Pin
dellthinker17-Oct-07 13:58
dellthinker17-Oct-07 13:58 
GeneralRe: using code with out dialog Pin
David Crow17-Oct-07 17:53
David Crow17-Oct-07 17:53 
Questionusing classes Pin
Tom De Angelis16-Oct-07 10:22
Tom De Angelis16-Oct-07 10:22 
QuestionRe: using classes Pin
David Crow16-Oct-07 10:51
David Crow16-Oct-07 10:51 
QuestionRe: using classes Pin
Hamid_RT16-Oct-07 19:20
Hamid_RT16-Oct-07 19:20 
QuestionNeed serialize/deserialize container class to/from XML. Pin
oleg6316-Oct-07 9:33
professionaloleg6316-Oct-07 9:33 
AnswerRe: Need serialize/deserialize container class to/from XML. Pin
indigox317-Oct-07 3:44
indigox317-Oct-07 3:44 
QuestionGDI+ initialization Pin
indigox316-Oct-07 9:16
indigox316-Oct-07 9:16 
AnswerRe: GDI+ initialization Pin
led mike16-Oct-07 9:43
led mike16-Oct-07 9:43 
GeneralRe: GDI+ initialization Pin
indigox316-Oct-07 9:53
indigox316-Oct-07 9:53 
GeneralRe: GDI+ initialization Pin
led mike17-Oct-07 4:44
led mike17-Oct-07 4:44 
AnswerRe: GDI+ initialization Pin
Mark Salsbery16-Oct-07 9:58
Mark Salsbery16-Oct-07 9:58 
GeneralRe: GDI+ initialization Pin
indigox317-Oct-07 3:41
indigox317-Oct-07 3:41 
GeneralRe: GDI+ initialization Pin
led mike17-Oct-07 4:43
led mike17-Oct-07 4:43 
AnswerRe: GDI+ initialization Pin
Randor 16-Oct-07 10:28
professional Randor 16-Oct-07 10:28 
GeneralRe: GDI+ initialization Pin
Mark Salsbery16-Oct-07 10:31
Mark Salsbery16-Oct-07 10:31 

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.