CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Cristi

Search: Search took 0.01 seconds.

  1. Re: How to capture mouse scroll for the CMFCRibbonEdit class?

    Thank you for the link Victor. It mentions subclassing the edit window in order to handle all messages. Now, the CMFCRibbonEdit class contains a protected pointer to a rich edit control which,...
  2. How to capture mouse scroll for the CMFCRibbonEdit class?

    For a ribbon bar with edit controls (CMFCRibbonEdit) I want to handle the mouse scroll events for the edit controls. That is, when the user clicks and then scrolls on the edit it will navigate a...
  3. Replies
    1
    Views
    7,431

    Dynamic icons on CMFCRibbonStatusBarPane

    Hello everyone,

    The goal is to change the status bar (CMFCRibbonStatusBar) icons based on some events.
    (The old CMFCStatusBar class had the SetPaneIcon() member that easily solves the problem.)
    ...
  4. Replies
    5
    Views
    8,526

    Re: How to create an image buffer in MFC

    Yes, I did that, and I'm afraid it isn't just a matter of copy-pasting.
    Here is my OnDraw() code, right now just five lines of code:



    void CMyView::OnDraw(CDC* pDC)
    {

    // CBitmap bmp;...
  5. Replies
    5
    Views
    8,526

    Re: How to create an image buffer in MFC

    Thank you D_Drmmr.
    The solution described in that example creates the DC object (CMemDC) and its bitmap within OnDraw, so they only exist and have to be updated within that scope. I'm looking for a...
  6. Replies
    5
    Views
    8,526

    How to create an image buffer in MFC

    Hello everyone,

    I'm new to codeguru and beginner with MFC.
    Can anyone please explain, or point out to an internet resource that explains how to create, initialize, and maintain a memory device...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured