Click here to Skip to main content
15,913,467 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CDlg on active (MFC) Pin
Roger Stoltz31-May-07 0:43
Roger Stoltz31-May-07 0:43 
GeneralRe: CDlg on active (MFC) Pin
Doc Lobster30-May-07 22:15
Doc Lobster30-May-07 22:15 
GeneralRe: CDlg on active (MFC) Pin
waxie30-May-07 23:11
waxie30-May-07 23:11 
AnswerRe: CDlg on active (MFC) Pin
SandipG 30-May-07 23:03
SandipG 30-May-07 23:03 
GeneralRe: CDlg on active (MFC) Pin
waxie30-May-07 23:10
waxie30-May-07 23:10 
QuestionHow to hook File movement Pin
VC_RYK30-May-07 21:11
VC_RYK30-May-07 21:11 
AnswerRe: How to hook File movement Pin
Nibu babu thomas30-May-07 21:41
Nibu babu thomas30-May-07 21:41 
QuestionAgain CListCtrl Pin
Bravoone_200630-May-07 20:03
Bravoone_200630-May-07 20:03 
How can i Sum Rows in column 3 i have selected ?

ok,this code sum all rows in all columns :

int nSum = 0;
for( int nRow = 0; nRow < m_list1.GetItemCount();nRow++)
{
for( int nColumn = 0; nColumn < 3;nColumn++)
{
csText = m_list1.GetItemText(nRow ,nColumn );
nSum += atoi( csText);
}
}
csText.Format("%d", nSum);
m_sum.SetWindowText(csText);

I have added Checkboxes to CListCtrl to select witch rows to Sum,ALL I WANT IS TO SUM ROWS IN COLUMN 3 THAT I HAVE SELECTED !!!
HOW ?

Bravoone

AnswerRe: Again CListCtrl Pin
Nibu babu thomas30-May-07 20:26
Nibu babu thomas30-May-07 20:26 
GeneralRe: Again CListCtrl Pin
_AnsHUMAN_ 30-May-07 20:36
_AnsHUMAN_ 30-May-07 20:36 
QuestionRe: Again CListCtrl Pin
Bravoone_200630-May-07 20:37
Bravoone_200630-May-07 20:37 
AnswerRe: Again CListCtrl Pin
_AnsHUMAN_ 30-May-07 20:34
_AnsHUMAN_ 30-May-07 20:34 
QuestionRe: Again CListCtrl Pin
Bravoone_200630-May-07 20:47
Bravoone_200630-May-07 20:47 
AnswerRe: Again CListCtrl Pin
Cedric Moonen30-May-07 20:59
Cedric Moonen30-May-07 20:59 
AnswerRe: Again CListCtrl Pin
Bravoone_200630-May-07 21:31
Bravoone_200630-May-07 21:31 
GeneralRe: Again CListCtrl Pin
_AnsHUMAN_ 30-May-07 22:04
_AnsHUMAN_ 30-May-07 22:04 
Questionhow to replace a string Pin
Pankaj.Jain30-May-07 19:54
professionalPankaj.Jain30-May-07 19:54 
AnswerRe: how to replace a string Pin
Hamid_RT30-May-07 20:17
Hamid_RT30-May-07 20:17 
Questionregarding static library Pin
a.mulay30-May-07 19:25
a.mulay30-May-07 19:25 
AnswerRe: regarding static library Pin
Naveen30-May-07 19:34
Naveen30-May-07 19:34 
GeneralRe: regarding static library Pin
a.mulay30-May-07 19:58
a.mulay30-May-07 19:58 
AnswerRe: regarding static library Pin
Cedric Moonen30-May-07 20:15
Cedric Moonen30-May-07 20:15 
GeneralRe: regarding static library Pin
a.mulay30-May-07 21:11
a.mulay30-May-07 21:11 
GeneralRe: regarding static library Pin
Cedric Moonen30-May-07 21:21
Cedric Moonen30-May-07 21:21 
GeneralRe: regarding static library Pin
a.mulay30-May-07 22:09
a.mulay30-May-07 22:09 

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.