Click here to Skip to main content
16,004,901 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: The Odd one out Pin
Waldermort20-Nov-06 20:47
Waldermort20-Nov-06 20:47 
GeneralRe: The Odd one out Pin
Cedric Moonen20-Nov-06 21:18
Cedric Moonen20-Nov-06 21:18 
GeneralRe: The Odd one out Pin
Christian Graus20-Nov-06 22:11
protectorChristian Graus20-Nov-06 22:11 
GeneralRe: The Odd one out Pin
Waldermort20-Nov-06 22:56
Waldermort20-Nov-06 22:56 
Questionsending a mail Pin
neha.agarwal2720-Nov-06 19:53
neha.agarwal2720-Nov-06 19:53 
AnswerRe: sending a mail Pin
Programm3r20-Nov-06 19:58
Programm3r20-Nov-06 19:58 
AnswerRe: sending a mail Pin
Christian Graus20-Nov-06 20:00
protectorChristian Graus20-Nov-06 20:00 
Questioninserting a item in list ctrl Pin
neha.agarwal2720-Nov-06 19:46
neha.agarwal2720-Nov-06 19:46 
I have made a list ctrl using this code

CListCtrl& lc = GetListCtrl();
lc.ModifyStyle(0,LVS_REPORT);
lc.InsertColumn(0, _T("Name"), LVCFMT_LEFT,50);
LVCOLUMN col;
col.mask = LVCF_FMT | LVCF_TEXT;
col.pszText = _T("Monitor Type");
col.fmt = LVCFMT_LEFT;
lc.InsertColumn(1, &col);
lc.SetColumnWidth(1,150);
lc.InsertColumn(2, _T("Host(Url)"), LVCFMT_LEFT,150);

i want to insert item in this ctrl from a different class
i have a pointer of that class, assigned memory to that pointer
inserting item like this
object->lc.InsertItem(0,strName);
But it is not working
it is compiled correctly
but when we run exe
it gives abort ignore error
what to do


AnswerRe: inserting a item in list ctrl Pin
Waldermort20-Nov-06 20:28
Waldermort20-Nov-06 20:28 
GeneralRe: inserting a item in list ctrl Pin
neha.agarwal2720-Nov-06 21:03
neha.agarwal2720-Nov-06 21:03 
QuestionGUI Telnet Client Pin
harshandu20-Nov-06 19:37
harshandu20-Nov-06 19:37 
AnswerRe: GUI Telnet Client Pin
Waldermort20-Nov-06 20:35
Waldermort20-Nov-06 20:35 
Questionbackup to remote system Pin
Kiran Pinjala20-Nov-06 19:25
Kiran Pinjala20-Nov-06 19:25 
AnswerRe: backup to remote system Pin
Mila02520-Nov-06 20:12
Mila02520-Nov-06 20:12 
GeneralRe: backup to remote system Pin
Kiran Pinjala20-Nov-06 20:25
Kiran Pinjala20-Nov-06 20:25 
GeneralRe: backup to remote system Pin
Mila02520-Nov-06 20:31
Mila02520-Nov-06 20:31 
GeneralRe: backup to remote system Pin
Kiran Pinjala20-Nov-06 21:37
Kiran Pinjala20-Nov-06 21:37 
GeneralRe: backup to remote system Pin
Mila02520-Nov-06 21:44
Mila02520-Nov-06 21:44 
QuestionHow to Save bitmap data from clipboard to .bmp file. Pin
Kshitij Pande20-Nov-06 18:41
Kshitij Pande20-Nov-06 18:41 
AnswerRe: How to Save bitmap data from clipboard to .bmp file. Pin
Christian Graus20-Nov-06 20:01
protectorChristian Graus20-Nov-06 20:01 
QuestionIs it True/False Pin
Cmania20-Nov-06 18:07
Cmania20-Nov-06 18:07 
AnswerRe: Is it True/False Pin
Waldermort20-Nov-06 18:16
Waldermort20-Nov-06 18:16 
QuestionRe: Is it True/False Pin
Cmania20-Nov-06 18:23
Cmania20-Nov-06 18:23 
AnswerRe: Is it True/False Pin
Stephen Hewitt20-Nov-06 19:31
Stephen Hewitt20-Nov-06 19:31 
GeneralRe: Is it True/False Pin
Garth J Lancaster20-Nov-06 20:05
professionalGarth J Lancaster20-Nov-06 20:05 

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.