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

Search:

Type: Posts; User: Paul Reynolds

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    1,320

    Subclassed CFileDialog - Double click?

    I have a subclassed cfiledialog which display images in a preview window...it uses the OnFileNameChange() call like the examples on this site...

    Trouble is, when you are dealing with large images...
  2. Replies
    2
    Views
    936

    Re: VC DLLs work only in VC

    Also, VC generates some useful headers which help:


    // If this DLL is dynamically linked against the MFC

    // DLLs, any functions exported from this DLL which

    // call into MFC must have...
  3. Re: Fix: CListCtrl Editable subitems and row selection

    Yeah...I came across the same problem...I just added a line to the setfocus:


    if(pOldWnd != NULL && IsWindow(pOldWnd->m_hWnd) && pOldWnd->GetParent() == this)

    return;
  4. BUG: Owner Drawn Menu with Icons(4) (automatically uses toolbar res)

    I have come across two small draw bugs with this otherwise excellent class:

    1. If a menu item is a pop-up menu, then the space to the left of the text is different to the space for non-popup menu...
  5. Replies
    1
    Views
    1,160

    BUG: Flat Owner Draw Buttons

    The code for the flat owner drawn buttons does not work properly when using a bitmap. When the bitmap button is in a disabled state, no draw action is

    undertaken at all. A quick solution to this...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured