Click here to Skip to main content
15,918,976 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: a pointer Pin
toxcct26-Sep-07 21:54
toxcct26-Sep-07 21:54 
GeneralRe: a pointer Pin
John R. Shaw26-Sep-07 23:12
John R. Shaw26-Sep-07 23:12 
AnswerRe: a pointer Pin
baerten26-Sep-07 21:37
baerten26-Sep-07 21:37 
GeneralRe: a pointer Pin
youbo26-Sep-07 21:45
youbo26-Sep-07 21:45 
GeneralRe: a pointer [modified] Pin
Russell'26-Sep-07 22:29
Russell'26-Sep-07 22:29 
GeneralRe: a pointer Pin
toxcct26-Sep-07 22:44
toxcct26-Sep-07 22:44 
GeneralRe: a pointer Pin
Russell'26-Sep-07 22:56
Russell'26-Sep-07 22:56 
QuestionUrgent - How to identify given image is too dark or light Pin
sujtha26-Sep-07 20:51
sujtha26-Sep-07 20:51 
AnswerRe: Urgent - How to identify given image is too dark or light Pin
Waldermort26-Sep-07 21:00
Waldermort26-Sep-07 21:00 
GeneralRe: Urgent - How to identify given image is too dark or light Pin
toxcct26-Sep-07 22:48
toxcct26-Sep-07 22:48 
AnswerRe: Urgent - How to identify given image is too dark or light Pin
Russell'26-Sep-07 22:37
Russell'26-Sep-07 22:37 
GeneralRe: Urgent - How to identify given image is too dark or light Pin
Nishad S27-Sep-07 1:56
Nishad S27-Sep-07 1:56 
GeneralRe: Urgent - How to identify given image is too dark or light Pin
Russell'27-Sep-07 2:14
Russell'27-Sep-07 2:14 
GeneralRe: Urgent - How to identify given image is too dark or light Pin
Nishad S27-Sep-07 3:06
Nishad S27-Sep-07 3:06 
GeneralRe: Urgent - How to identify given image is too dark or light Pin
Russell'27-Sep-07 3:38
Russell'27-Sep-07 3:38 
GeneralRe: Urgent - How to identify given image is too dark or light Pin
Sreedhar DV27-Sep-07 23:02
Sreedhar DV27-Sep-07 23:02 
GeneralRe: Urgent - How to identify given image is too dark or light Pin
Russell'5-Oct-07 6:40
Russell'5-Oct-07 6:40 
AnswerRe: Urgent - How to identify given image is too dark or light Pin
KarstenK26-Sep-07 23:53
mveKarstenK26-Sep-07 23:53 
QuestionProblem with calling web service using HTTPSendRequest and InternetReadFile on EVC 3.0. Pin
HetalAgrawal26-Sep-07 20:37
HetalAgrawal26-Sep-07 20:37 
AnswerRe: Problem with calling web service using HTTPSendRequest and InternetReadFile on EVC 3.0. Pin
HetalAgrawal30-Sep-07 20:03
HetalAgrawal30-Sep-07 20:03 
QuestionRepainting of Internet Explorer Pin
Q2A26-Sep-07 20:24
Q2A26-Sep-07 20:24 
Questionhow to track no event has taken on an application and session has expired Pin
Dhiraj kumar Saini26-Sep-07 20:15
Dhiraj kumar Saini26-Sep-07 20:15 
QuestionListView Pin
nitin326-Sep-07 19:48
nitin326-Sep-07 19:48 
AnswerRe: ListView Pin
Naveen26-Sep-07 20:01
Naveen26-Sep-07 20:01 
AnswerRe: ListView Pin
Nelek26-Sep-07 20:08
protectorNelek26-Sep-07 20:08 
in a CListCtrl every first column in a row is an item and every other column is a subitem of the item.

I mean:

If a Matrix of MxN, then you have M rows, where column 1 are items and columns [2, N] are subitems. So you have M items and N-1 subitems.

So you can use:

CListCtrl::GetColumn
BOOL GetColumn( int nCol, LVCOLUMN* pColumn ) const;

Return Value
Nonzero if successful; otherwise zero.


put it in an iteration and the last time you get nonzero as return is the number of columns.

Greetings.

--------
M.D.V.

If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?

Help me to understand what I'm saying, and I'll explain it better to you

Wink | ;)

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.