Click here to Skip to main content
15,908,842 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Persisting Bitmaps - forget it Pin
Ganesh Ramaswamy26-Jul-01 10:20
Ganesh Ramaswamy26-Jul-01 10:20 
QuestionCListCtrl missing GetSelItems(). Any Reason?? Pin
Chris Meech26-Jul-01 6:17
Chris Meech26-Jul-01 6:17 
AnswerRe: CListCtrl missing GetSelItems(). Any Reason?? Pin
Tomasz Sowinski26-Jul-01 6:51
Tomasz Sowinski26-Jul-01 6:51 
GeneralRe: CListCtrl missing GetSelItems(). Any Reason?? Pin
Chris Meech26-Jul-01 7:36
Chris Meech26-Jul-01 7:36 
QuestionCListCtrl missing GetSelItems(). Any Reason?? Pin
Chris Meech26-Jul-01 6:17
Chris Meech26-Jul-01 6:17 
GeneralHelp me...Set editbox focus in a listctrl itemchanged handler Pin
CMFC6.0VS.NETUser26-Jul-01 5:45
CMFC6.0VS.NETUser26-Jul-01 5:45 
QuestionHow can I Pin
26-Jul-01 5:27
suss26-Jul-01 5:27 
AnswerRe: How can I Pin
Carlos Antollini26-Jul-01 5:59
Carlos Antollini26-Jul-01 5:59 
You need to use CRichEditCtrl::SetSelectionCharFormat()
A sample:

First Select the text with SetSel and then

CHARFORMAT cf;

cf.dwMask = CFM_COLOR;
cf.dwEffects = CFE_AUTOCOLOR;
cf.crTextColor = (COLORREF)RGB(100, 100, 100);
pRichEditCtrl->SetSelectionCharFormat(cf);

Cheers!!!
Big Grin | :-D

Carlos Antollini.
GeneralPrinting in Dialog Pin
Michael Martin26-Jul-01 5:19
professionalMichael Martin26-Jul-01 5:19 
GeneralRe: Printing in Dialog Pin
Tomasz Sowinski26-Jul-01 7:13
Tomasz Sowinski26-Jul-01 7:13 
Generalmethod FIND Pin
Gérald Mercet26-Jul-01 4:47
Gérald Mercet26-Jul-01 4:47 
GeneralRe: method FIND Pin
Carlos Antollini26-Jul-01 5:08
Carlos Antollini26-Jul-01 5:08 
GeneralReadonly recordset Pin
Jimmy Ehrnström26-Jul-01 3:59
Jimmy Ehrnström26-Jul-01 3:59 
GeneralRe: Readonly recordset Pin
Carlos Antollini26-Jul-01 4:42
Carlos Antollini26-Jul-01 4:42 
GeneralRe: Readonly recordset Pin
Jimmy Ehrnström26-Jul-01 4:54
Jimmy Ehrnström26-Jul-01 4:54 
GeneralRe: Readonly recordset Pin
Carlos Antollini26-Jul-01 5:12
Carlos Antollini26-Jul-01 5:12 
GeneralRe: Readonly recordset Pin
Jimmy Ehrnström26-Jul-01 22:05
Jimmy Ehrnström26-Jul-01 22:05 
GeneralRe: Readonly recordset Pin
4-Sep-01 1:33
suss4-Sep-01 1:33 
GeneralLocalization in arabic Pin
Hussam Ahmad26-Jul-01 3:39
Hussam Ahmad26-Jul-01 3:39 
GeneralRe: Localization in arabic Pin
Michael Dunn26-Jul-01 8:53
sitebuilderMichael Dunn26-Jul-01 8:53 
GeneralRe: Localization in arabic Pin
Carlos Antollini26-Jul-01 9:12
Carlos Antollini26-Jul-01 9:12 
GeneralProblems loading DLL Pin
26-Jul-01 2:43
suss26-Jul-01 2:43 
GeneralRe: Problems loading DLL Pin
Tomasz Sowinski26-Jul-01 2:55
Tomasz Sowinski26-Jul-01 2:55 
GeneralRe: Problems loading DLL Pin
26-Jul-01 4:12
suss26-Jul-01 4:12 
GeneralRe: Problems loading DLL Pin
Tomasz Sowinski26-Jul-01 4:14
Tomasz Sowinski26-Jul-01 4:14 

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.