Click here to Skip to main content
15,899,825 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Changing the selection color of a CRichEditView Pin
BOURDAUD'HUI27-Jun-00 23:19
BOURDAUD'HUI27-Jun-00 23:19 
GeneralRegistry Question Pin
ldaoust27-Jun-00 7:16
ldaoust27-Jun-00 7:16 
GeneralRe: Registry Question Pin
pba_27-Jun-00 22:42
pba_27-Jun-00 22:42 
GeneralRe: Registry Question Pin
ldaoust28-Jun-00 6:01
ldaoust28-Jun-00 6:01 
GeneralRe: Registry Question Pin
Blake Miller28-Jun-00 7:06
Blake Miller28-Jun-00 7:06 
GeneralPrint source file in color Pin
Claude Gagnon27-Jun-00 5:56
Claude Gagnon27-Jun-00 5:56 
GeneralRe: Print source file in color Pin
Paul Selormey28-Jun-00 7:29
Paul Selormey28-Jun-00 7:29 
GeneralCTabCtrl with CPropertyPage Pin
Member 253753127-Jun-00 4:22
Member 253753127-Jun-00 4:22 
I'm using a CPropertyPage derived class in wizard mode. To change the caption of the wizard dialog after a DoModal() call I use the following code in one of the propertypages:

CEvaluatorWzd *pEvaluatorWzd = (CEvaluatorWzd*)GetParent();
int nPage = pEvaluatorWzd->GetActiveIndex();
CTabCtrl* pTab = pEvaluatorWzd->GetTabControl();
TC_ITEM ti;
ti.mask = TCIF_TEXT;
ti.pszText = pszText;
ti.cchTextMax = 100;
pTab->SetItem(nPage, &ti);

CEvaluatorWzd is the derived from CPropertySheet

This works fine for the first most pages, except for those pages where I return -1 from a CPropertyPage::OnWizardNext or ::OnWizardNext to prevent the wizard from changing pages

HELP!!!
GeneralObjective grid and mfc extention dll Pin
Eugene Karpov27-Jun-00 3:54
Eugene Karpov27-Jun-00 3:54 
GeneralAdd-ins to explorer Pin
Andreas Philipson27-Jun-00 3:31
Andreas Philipson27-Jun-00 3:31 
GeneralRe: Add-ins to explorer Pin
Erik Thompson27-Jun-00 6:04
sitebuilderErik Thompson27-Jun-00 6:04 
GeneralGetting the start upp parameters of a MFC Application... Pin
Andreas Philipson27-Jun-00 3:27
Andreas Philipson27-Jun-00 3:27 
GeneralRe: Getting the start upp parameters of a MFC Application... Pin
Blake Miller27-Jun-00 6:27
Blake Miller27-Jun-00 6:27 
QuestionIs it possible to intercept and parse the HTML that IE requests before IE does? Pin
Robert Barron27-Jun-00 2:42
sussRobert Barron27-Jun-00 2:42 
AnswerRe: Is it possible to intercept and parse the HTML that IE requests before IE does? Pin
pba_27-Jun-00 3:15
pba_27-Jun-00 3:15 
GeneralRe: Is it possible to intercept and parse the HTML that IE requests before IE does? Pin
Andreas Philipson27-Jun-00 3:28
Andreas Philipson27-Jun-00 3:28 
GeneralRe: Is it possible to intercept and parse the HTML that IE requests before IE does? Pin
pba_27-Jun-00 6:45
pba_27-Jun-00 6:45 
GeneralCMSWinsockControl help Pin
uzeb27-Jun-00 0:20
sussuzeb27-Jun-00 0:20 
GeneralCRichEditView Pin
BOURDAUD'HUI27-Jun-00 0:05
BOURDAUD'HUI27-Jun-00 0:05 
GeneralHide App From Task List Pin
Lau26-Jun-00 23:13
Lau26-Jun-00 23:13 
GeneralRe: Hide App From Task List Pin
heejun27-Jun-00 1:41
heejun27-Jun-00 1:41 
GeneralCListCtrl using OnCustomDraw() Pin
Chris Vischer26-Jun-00 21:35
Chris Vischer26-Jun-00 21:35 
QuestionWhat's Component Manager? Pin
Member 327926-Jun-00 20:47
Member 327926-Jun-00 20:47 
QuestionCan I call a CDialog's DoModal() from HTML contained in CHTMLView? Pin
panoramix26-Jun-00 15:04
panoramix26-Jun-00 15:04 
AnswerRe: Can I call a CDialog's DoModal() from HTML contained in CHTMLView? Pin
pba_27-Jun-00 2:41
pba_27-Jun-00 2:41 

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.