Click here to Skip to main content
15,901,283 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionOpenDocumentFile() readonly?? Pin
brianwelsch16-Oct-02 9:46
brianwelsch16-Oct-02 9:46 
AnswerRe: OpenDocumentFile() readonly?? Pin
Anonymous16-Oct-02 12:06
Anonymous16-Oct-02 12:06 
GeneralRe: OpenDocumentFile() readonly?? Pin
brianwelsch17-Oct-02 2:41
brianwelsch17-Oct-02 2:41 
GeneralProblem Installer (c++.net) Pin
AnTri16-Oct-02 9:36
AnTri16-Oct-02 9:36 
GeneralRe: Problem Installer (c++.net) Pin
Chris Losinger16-Oct-02 10:41
professionalChris Losinger16-Oct-02 10:41 
GeneralRe: Problem Installer (c++.net) Pin
Stephane Rodriguez.16-Oct-02 10:54
Stephane Rodriguez.16-Oct-02 10:54 
QuestionHow can I set text color in a RichEditCtrl ? Pin
Cris16-Oct-02 9:31
Cris16-Oct-02 9:31 
AnswerRe: How can I set text color in a RichEditCtrl ? Pin
Anonymous16-Oct-02 12:13
Anonymous16-Oct-02 12:13 
The following will color all the text in the rich edit control.

COLORREF textColor = RGB(130,0,0); // Your color
CHARFORMAT cf;
cf.crTextColor = textColor;
cf.dwEffects = 0;
cf.dwMask = CFM_COLOR;
textColor = cf.crTextColor;
SetSel(0,-1);
SetSelectionCharFormat(cf);


GeneralRe: How can I set text color in a RichEditCtrl ? Pin
Cris17-Oct-02 1:41
Cris17-Oct-02 1:41 
Generalstring Pin
16-Oct-02 9:27
suss16-Oct-02 9:27 
GeneralRe: string Pin
Chris Losinger16-Oct-02 10:36
professionalChris Losinger16-Oct-02 10:36 
Generalfile's owner Pin
orcun colak16-Oct-02 8:28
orcun colak16-Oct-02 8:28 
GeneralRe: file's owner Pin
Qiang.Fu18-Oct-02 2:47
Qiang.Fu18-Oct-02 2:47 
Generalunix makefile --> VC++ project Pin
lucy16-Oct-02 8:19
lucy16-Oct-02 8:19 
GeneralRe: unix makefile --> VC++ project Pin
Stephane Rodriguez.16-Oct-02 8:39
Stephane Rodriguez.16-Oct-02 8:39 
GeneralRe: unix makefile --> VC++ project Pin
lucy16-Oct-02 10:29
lucy16-Oct-02 10:29 
GeneralIt is a UNIX related question. If someone can help. Pin
mijarral16-Oct-02 7:56
mijarral16-Oct-02 7:56 
GeneralRe: It is a UNIX related question. If someone can help. Pin
lucy16-Oct-02 8:02
lucy16-Oct-02 8:02 
GeneralRe: It is a UNIX related question. If someone can help. Pin
mijarral16-Oct-02 8:22
mijarral16-Oct-02 8:22 
GeneralRe: It is a UNIX related question. If someone can help. Pin
Pavel Klocek16-Oct-02 8:05
Pavel Klocek16-Oct-02 8:05 
Questionwhich lib is corresponding to INetCfg(NetCfgX.h)? Pin
Tida16-Oct-02 7:27
Tida16-Oct-02 7:27 
AnswerRe: which lib is corresponding to INetCfg(NetCfgX.h)? Pin
Le centriste16-Oct-02 7:46
Le centriste16-Oct-02 7:46 
GeneralRe: which lib is corresponding to INetCfg(NetCfgX.h)? Pin
Tida16-Oct-02 10:02
Tida16-Oct-02 10:02 
GeneralSelecting Printer Fonts not included in windows enum Pin
mcdirge16-Oct-02 7:24
mcdirge16-Oct-02 7:24 
GeneralRe: Selecting Printer Fonts not included in windows enum Pin
valikac16-Oct-02 8:11
valikac16-Oct-02 8:11 

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.