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

C / C++ / MFC

 
AnswerRe: how to abort application Pin
ThatsAlok1-Apr-09 19:06
ThatsAlok1-Apr-09 19:06 
GeneralRe: how to abort application Pin
hemlat1-Apr-09 19:39
hemlat1-Apr-09 19:39 
GeneralRe: how to abort application Pin
ThatsAlok2-Apr-09 1:52
ThatsAlok2-Apr-09 1:52 
QuestionHow To Make a Simple compiler Pin
jeansea31-Mar-09 23:46
jeansea31-Mar-09 23:46 
AnswerRe: How To Analyse a Simple Script Pin
Iain Clarke, Warrior Programmer31-Mar-09 23:50
Iain Clarke, Warrior Programmer31-Mar-09 23:50 
GeneralRe: How To Analyse a Simple Script Pin
jeansea1-Apr-09 0:11
jeansea1-Apr-09 0:11 
GeneralRe: How To Analyse a Simple Script Pin
Iain Clarke, Warrior Programmer1-Apr-09 0:29
Iain Clarke, Warrior Programmer1-Apr-09 0:29 
AnswerRe: How To Analyse a Simple Script Pin
Cedric Moonen31-Mar-09 23:59
Cedric Moonen31-Mar-09 23:59 
AnswerRe: How To Analyse a Simple Script Pin
CPallini1-Apr-09 0:17
mveCPallini1-Apr-09 0:17 
GeneralRe: How To Analyse a Simple Script Pin
jeansea1-Apr-09 0:50
jeansea1-Apr-09 0:50 
GeneralRe: How To Analyse a Simple Script Pin
Rajesh R Subramanian1-Apr-09 1:35
professionalRajesh R Subramanian1-Apr-09 1:35 
GeneralRe: How To Analyse a Simple Script Pin
jeansea1-Apr-09 2:02
jeansea1-Apr-09 2:02 
GeneralRe: How To Analyse a Simple Script Pin
CPallini1-Apr-09 1:39
mveCPallini1-Apr-09 1:39 
GeneralRe: How To Analyse a Simple Script Pin
Cedric Moonen1-Apr-09 1:51
Cedric Moonen1-Apr-09 1:51 
GeneralRe: How To Analyse a Simple Script Pin
jeansea1-Apr-09 2:21
jeansea1-Apr-09 2:21 
GeneralRe: How To Analyse a Simple Script Pin
Cedric Moonen1-Apr-09 2:57
Cedric Moonen1-Apr-09 2:57 
GeneralRe: How To Analyse a Simple Script Pin
David Crow1-Apr-09 3:19
David Crow1-Apr-09 3:19 
AnswerRe: How To Make a Simple compiler - NOTHING LIKE THE ORIGINAL MESSAGE Pin
Iain Clarke, Warrior Programmer1-Apr-09 2:13
Iain Clarke, Warrior Programmer1-Apr-09 2:13 
AnswerRe: How To Make a Simple compiler Pin
sashoalm1-Apr-09 2:55
sashoalm1-Apr-09 2:55 
AnswerRe: How To Make a Simple compiler Pin
Stuart Dootson1-Apr-09 3:29
professionalStuart Dootson1-Apr-09 3:29 
QuestionCListCtrl problem Pin
bhanu_850931-Mar-09 23:42
bhanu_850931-Mar-09 23:42 
AnswerRe: CListCtrl problem Pin
CPallini1-Apr-09 0:32
mveCPallini1-Apr-09 0:32 
GeneralRe: CListCtrl problem Pin
bhanu_85091-Apr-09 0:39
bhanu_85091-Apr-09 0:39 
When I use Report Style, even I cannot add the items in the list.

//List Control parameters 
//CONTROL "",IDC_LIST1,"SysListView32",LVS_LIST | LVS_ALIGNLEFT | LVS_NOCOLUMNHEADER | WS_BORDER | WS_TABSTOP,112,23,84,114 (even I tried LVS_REPORT)
m_List.EnableScrollBar(SB_VERT, true);
m_List.EnableScrollBar(SB_HORZ,false);
CString strText;
int nColumnCount = 0;
for (int i=0;i < 20;i++)
{
   strText.Format(TEXT("item %d"), i);
   // Insert the item
   m_List.InsertItem(i, strText);
}

GeneralRe: CListCtrl problem Pin
CPallini1-Apr-09 0:45
mveCPallini1-Apr-09 0:45 
GeneralRe: CListCtrl problem Pin
bhanu_85091-Apr-09 0:55
bhanu_85091-Apr-09 0:55 

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.