Click here to Skip to main content
15,920,627 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to recover c++ files Pin
rjkg16-Oct-07 20:36
rjkg16-Oct-07 20:36 
GeneralRe: how to recover c++ files Pin
Paresh Chitte16-Oct-07 20:58
Paresh Chitte16-Oct-07 20:58 
GeneralRe: how to recover c++ files Pin
rjkg16-Oct-07 21:01
rjkg16-Oct-07 21:01 
GeneralRe: how to recover c++ files Pin
ThatsAlok16-Oct-07 22:55
ThatsAlok16-Oct-07 22:55 
GeneralRe: how to recover c++ files Pin
Hamid_RT17-Oct-07 2:06
Hamid_RT17-Oct-07 2:06 
GeneralRe: how to recover c++ files Pin
ThatsAlok17-Oct-07 2:23
ThatsAlok17-Oct-07 2:23 
GeneralRe: how to recover c++ files Pin
Hamid_RT17-Oct-07 2:33
Hamid_RT17-Oct-07 2:33 
GeneralRe: how to recover c++ files Pin
ThatsAlok17-Oct-07 3:06
ThatsAlok17-Oct-07 3:06 
GeneralRe: how to recover c++ files Pin
Hamid_RT16-Oct-07 21:01
Hamid_RT16-Oct-07 21:01 
GeneralRe: how to recover c++ files Pin
rjkg16-Oct-07 21:11
rjkg16-Oct-07 21:11 
GeneralRe: how to recover c++ files Pin
ThatsAlok17-Oct-07 2:04
ThatsAlok17-Oct-07 2:04 
GeneralRe: how to recover c++ files Pin
Hamid_RT17-Oct-07 2:06
Hamid_RT17-Oct-07 2:06 
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 

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.