Click here to Skip to main content
16,011,839 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Very weird problem... Pin
Sprudling7-Feb-02 17:30
Sprudling7-Feb-02 17:30 
GeneralRe: Very weird problem... Pin
Nish Nishant7-Feb-02 18:12
sitebuilderNish Nishant7-Feb-02 18:12 
GeneralRe: Very weird problem... (just a comment) Pin
moliate8-Feb-02 0:49
moliate8-Feb-02 0:49 
GeneralMFC/Web Services Pin
Dejan Petrovic7-Feb-02 14:27
Dejan Petrovic7-Feb-02 14:27 
QuestionHow much memory am I really using Pin
Bill Wilson7-Feb-02 12:24
Bill Wilson7-Feb-02 12:24 
AnswerRe: How much memory am I really using Pin
Tim Smith7-Feb-02 13:22
Tim Smith7-Feb-02 13:22 
GeneralRe: How much memory am I really using Pin
Bill Wilson7-Feb-02 13:29
Bill Wilson7-Feb-02 13:29 
GeneralCListCtrl into ClistView !!! Pin
7-Feb-02 11:45
suss7-Feb-02 11:45 
InsertItem don't work :

void CMyListView::OnInitialUpdate()
{
CListView::OnInitialUpdate();

ModifyStyle(NULL, LVS_REPORT,0);

// this code only works for a report-mode list view
//ASSERT(GetStyle() & LVS_REPORT);

// Gain a reference to the list control itself
CListCtrl& theCtrl = GetListCtrl();

// Insert a column. This override is the most convenient.
theCtrl.InsertColumn(0, _T("Names"), LVCFMT_CENTER);

// The other InsertColumn() override requires an initialized
// LVCOLUMN structure.
LVCOLUMN col;
col.mask = LVCF_FMT | LVCF_TEXT;
col.pszText = _T("Version");
col.fmt = LVCFMT_CENTER;
theCtrl.InsertColumn(1, &col);
theCtrl.InsertColumn(2,"Description",LVCFMT_CENTER);

// Set reasonable widths for our columns
theCtrl.SetColumnWidth(0, 200);
theCtrl.SetColumnWidth(1, 100);
theCtrl.SetColumnWidth(2, 100);


GetListCtrl().InsertItem(0, "First row"); //Don't work ??


// TODO: You may populate your ListView with items by directly
//accessing
// its list control through a call to GetListCtrl().
}

Please Help Me ,thanks
GeneralRe: CListCtrl into ClistView !!! Pin
Michael Dunn7-Feb-02 12:09
sitebuilderMichael Dunn7-Feb-02 12:09 
GeneralRe: CListCtrl into ClistView !!! Pin
8-Feb-02 8:38
suss8-Feb-02 8:38 
GeneralPostQuitMessage in WinCE 3.0 Pin
Mel Stober7-Feb-02 10:56
Mel Stober7-Feb-02 10:56 
GeneralRe: PostQuitMessage in WinCE 3.0 Pin
Joaquín M López Muñoz7-Feb-02 11:59
Joaquín M López Muñoz7-Feb-02 11:59 
GeneralRe: PostQuitMessage in WinCE 3.0 Pin
Paul Wolfensberger18-Jun-02 10:47
Paul Wolfensberger18-Jun-02 10:47 
GeneralRe: PostQuitMessage in WinCE 3.0 Pin
Mel Stober18-Jun-02 10:51
Mel Stober18-Jun-02 10:51 
GeneralRe: PostQuitMessage in WinCE 3.0 Pin
Paul Wolfensberger19-Jun-02 2:23
Paul Wolfensberger19-Jun-02 2:23 
Generalparsing / data-mining a message received on window socket Pin
mr_k7-Feb-02 10:33
mr_k7-Feb-02 10:33 
GeneralRe: parsing / data-mining a message received on window socket Pin
Joaquín M López Muñoz7-Feb-02 12:12
Joaquín M López Muñoz7-Feb-02 12:12 
GeneralXp Icons Pin
Swinefeaster7-Feb-02 10:20
Swinefeaster7-Feb-02 10:20 
Generalquestion Pin
7-Feb-02 10:15
suss7-Feb-02 10:15 
GeneralRe: question Pin
Christian Graus7-Feb-02 10:37
protectorChristian Graus7-Feb-02 10:37 
GeneralAbout TAPI 3.0 COM problems Pin
7-Feb-02 10:18
suss7-Feb-02 10:18 
GeneralRe: About TAPI 3.0 COM problems Pin
Joaquín M López Muñoz7-Feb-02 10:24
Joaquín M López Muñoz7-Feb-02 10:24 
GeneralThank YOU Pin
7-Feb-02 9:59
suss7-Feb-02 9:59 
GeneralEndDialog problem ! Pin
Hadi Rezaee7-Feb-02 9:47
Hadi Rezaee7-Feb-02 9:47 
GeneralRe: EndDialog problem ! Pin
Joaquín M López Muñoz7-Feb-02 9:56
Joaquín M López Muñoz7-Feb-02 9:56 

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.