Click here to Skip to main content
15,894,362 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralUsing CDoc's data for a new document in MDI Pin
mr200326-Jun-01 16:05
mr200326-Jun-01 16:05 
GeneralRe: Using CDoc's data for a new document in MDI Pin
Christian Graus26-Jun-01 16:18
protectorChristian Graus26-Jun-01 16:18 
GeneralRe: Using CDoc's data for a new document in MDI Pin
mr200326-Jun-01 16:43
mr200326-Jun-01 16:43 
GeneralRe: Using CDoc's data for a new document in MDI Pin
Christian Graus26-Jun-01 17:03
protectorChristian Graus26-Jun-01 17:03 
GeneralTry this again Pin
Michael Martin26-Jun-01 15:43
professionalMichael Martin26-Jun-01 15:43 
GeneralRe: Try this again Pin
Christian Graus26-Jun-01 15:51
protectorChristian Graus26-Jun-01 15:51 
GeneralRe: Try this again Pin
26-Jun-01 16:20
suss26-Jun-01 16:20 
GeneralRe: Try this again Pin
Bret Faller27-Jun-01 7:21
Bret Faller27-Jun-01 7:21 
You can always set the Primary Key column's width to 0, thereby making it hidden.

LVCOLUMN lvColumn;
memset(&lvColumn, 0, sizeof(lvColumn));
lvColumn.mask = LVCF_WIDTH;
listCtrl.GetColumn(0, &lvColumn);
lvColumn.cx = 0;
listCtrl.SetColumn(0, &lvColumn);


Bret Faller
Odyssey Computing, Inc.
GeneralYet another ListCtrl question Pin
Michael Martin26-Jun-01 15:35
professionalMichael Martin26-Jun-01 15:35 
GeneralRe: Yet another ListCtrl question Pin
Michael Martin26-Jun-01 15:44
professionalMichael Martin26-Jun-01 15:44 
GeneralRe: Yet another ListCtrl question Pin
PJ Arends26-Jun-01 16:43
professionalPJ Arends26-Jun-01 16:43 
QuestionScaleX for C++? Pin
Craig Miller26-Jun-01 14:18
Craig Miller26-Jun-01 14:18 
AnswerRe: ScaleX for C++? Pin
Tomasz Sowinski27-Jun-01 2:28
Tomasz Sowinski27-Jun-01 2:28 
QuestionCan I programmatically access the running process list? Pin
Jon Sagara26-Jun-01 13:22
Jon Sagara26-Jun-01 13:22 
AnswerRe: Can I programmatically access the running process list? Pin
Jon Sagara26-Jun-01 14:44
Jon Sagara26-Jun-01 14:44 
GeneralFile I/O Pin
John Uhlenbrock26-Jun-01 12:34
John Uhlenbrock26-Jun-01 12:34 
GeneralRe: File I/O Pin
Ben Burnett26-Jun-01 14:19
Ben Burnett26-Jun-01 14:19 
GeneralRe: File I/O Pin
John Uhlenbrock27-Jun-01 6:37
John Uhlenbrock27-Jun-01 6:37 
GeneralRe: File I/O Pin
Ben Burnett27-Jun-01 9:49
Ben Burnett27-Jun-01 9:49 
GeneralSetRange for CSpinButtonCtrl Pin
Jerry Wang26-Jun-01 11:59
Jerry Wang26-Jun-01 11:59 
GeneralRe: SetRange for CSpinButtonCtrl Pin
Tomasz Sowinski27-Jun-01 2:38
Tomasz Sowinski27-Jun-01 2:38 
GeneralRe: SetRange for CSpinButtonCtrl Pin
Jerry Wang27-Jun-01 9:53
Jerry Wang27-Jun-01 9:53 
GeneralRe: SetRange for CSpinButtonCtrl Pin
Tomasz Sowinski27-Jun-01 10:05
Tomasz Sowinski27-Jun-01 10:05 
GeneralRe: SetRange for CSpinButtonCtrl Pin
Jerry Wang27-Jun-01 10:37
Jerry Wang27-Jun-01 10:37 
GeneralRe: SetRange for CSpinButtonCtrl Pin
Tomasz Sowinski27-Jun-01 10:40
Tomasz Sowinski27-Jun-01 10:40 

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.