Click here to Skip to main content
15,891,204 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: overloading new operator Pin
Cedric Moonen7-May-07 1:26
Cedric Moonen7-May-07 1:26 
GeneralRe: overloading new operator Pin
Hans Dietrich7-May-07 1:40
mentorHans Dietrich7-May-07 1:40 
QuestionRe: overloading new operator Pin
James R. Twine7-May-07 3:26
James R. Twine7-May-07 3:26 
AnswerRe: overloading new operator Pin
Cedric Moonen7-May-07 7:28
Cedric Moonen7-May-07 7:28 
AnswerRe: overloading new operator Pin
toxcct7-May-07 1:42
toxcct7-May-07 1:42 
AnswerRe: overloading new operator Pin
James R. Twine7-May-07 3:12
James R. Twine7-May-07 3:12 
QuestionCListCtrl Pin
study.sourabh7-May-07 0:43
study.sourabh7-May-07 0:43 
AnswerRe: CListCtrl Pin
Hans Dietrich7-May-07 1:31
mentorHans Dietrich7-May-07 1:31 
study.sourabh wrote:
how can i get the cell which user selected?


In my XListCtrl, I have the function:
int CXListCtrl::GetCurSel()
{
	POSITION pos = GetFirstSelectedItemPosition();
	int nSelectedItem = -1;
	if (pos != NULL)
		nSelectedItem = GetNextSelectedItem(pos);
	return nSelectedItem;
}
Note that this returns the selected row. To find out which column was clicked, you can handle the NM_CLICK or LVN_COLUMNCLICK messages.

study.sourabh wrote:
Is it posible to change the icone used for check box ?


Yes, you can handle the NM_CUSTOMDRAW message and draw your own. There are examples here on CP that will help.

Best wishes,
Hans
GeneralRe: CListCtrl Pin
study.sourabh7-May-07 3:03
study.sourabh7-May-07 3:03 
GeneralRe: CListCtrl Pin
Hans Dietrich7-May-07 3:36
mentorHans Dietrich7-May-07 3:36 
GeneralRe: CListCtrl Pin
study.sourabh7-May-07 18:02
study.sourabh7-May-07 18:02 
QuestionNP-complete riddle/algorithm Pin
Yariv6-May-07 23:56
Yariv6-May-07 23:56 
AnswerRe: NP-complete riddle/algorithm Pin
toxcct7-May-07 0:04
toxcct7-May-07 0:04 
GeneralRe: NP-complete riddle/algorithm Pin
Yariv7-May-07 8:47
Yariv7-May-07 8:47 
AnswerRe: NP-complete riddle/algorithm Pin
Hans Dietrich7-May-07 1:36
mentorHans Dietrich7-May-07 1:36 
GeneralRe: NP-complete riddle/algorithm Pin
Yariv7-May-07 8:46
Yariv7-May-07 8:46 
AnswerRe: NP-complete riddle/algorithm Pin
Yariv7-May-07 12:43
Yariv7-May-07 12:43 
QuestionScrollBar Presence in ListBox ? Pin
sayed_76-May-07 23:30
sayed_76-May-07 23:30 
AnswerRe: ScrollBar Presence in ListBox ? Pin
prasad_som6-May-07 23:44
prasad_som6-May-07 23:44 
QuestionHow to get PID / Process Name from Task Manager Pin
SNI6-May-07 23:11
SNI6-May-07 23:11 
AnswerRe: How to get PID / Process Name from Task Manager Pin
SNI6-May-07 23:16
SNI6-May-07 23:16 
AnswerRe: How to get PID / Process Name from Task Manager Pin
prasad_som6-May-07 23:24
prasad_som6-May-07 23:24 
GeneralRe: How to get PID / Process Name from Task Manager Pin
ThatsAlok16-May-07 20:00
ThatsAlok16-May-07 20:00 
Questionhow to convert the string type into double type? (vs 2005) Pin
sync_austin6-May-07 23:09
sync_austin6-May-07 23:09 
AnswerRe: how to convert the string type into double type? (vs 2005) Pin
_AnsHUMAN_ 6-May-07 23:15
_AnsHUMAN_ 6-May-07 23:15 

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.