Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

derek7

@derek7
About
Posts
59
Topics
36
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to get cview or cdocment object pointer?
    D derek7

    POSITION pos = GetFirstViewPosition(); while (pos != NULL) { CView* pView = GetNextView(pos); pView->UpdateWindow(); } if GetFirstViewPosition return a first pos.then GetNextView will return second pos view pointer. Am I right?

    C / C++ / MFC c++ tutorial question

  • what is internet development sdk?
    D derek7

    what dll or lib coresponding to the sdk? for example mfc lib is supplied in mfc42.lib or mfc42.dll.

    C / C++ / MFC question c++ tutorial

  • what is different cdialog and cdialogbar?
    D derek7

    it seem no different between them, dialogbar is just no-title dialog. am I right? why do I need the dialogbar other than dialog?

    C / C++ / MFC question

  • how to get cview or cdocment object pointer?
    D derek7

    in MFC, I know doc and view is created in ProcessShellCommand with CSingleDocTemplate. but I wanna get current view pointer so that I can hide it by ShowWindow(getView(), SW_HIDE);

    C / C++ / MFC c++ tutorial question

  • how to paint a bitmap on client?
    D derek7

    case WM_PAINT: hdc = BeginPaint (hwnd, &ps) ; hdcMem = CreateCompatibleDC (hdc) ; SelectObject (hdcMem, hBitmap) ; BitBlt (hdc, 0, 0, cx , cy, hdcMem, 0, 0, SRCCOPY) ; DeleteDC (hdcMem) ; EndPaint (hwnd, &ps) ; return 0 ; it is a way,but how to paint without memory device context? but SelectObject (hdc, hBitmap) does not put bitmap on screen.

    C / C++ / MFC graphics performance tutorial question

  • which tool do more strictly check code than c++compiler.
    D derek7

    if I am not indicate a head file is a library header file, what wrong will arise?

    C / C++ / MFC c++

  • which tool do more strictly check code than c++compiler.
    D derek7

    I read link document, dive into many options and disapear. could you give me some frequently used option? for example : detect all un-initialized variable or something good.

    C / C++ / MFC c++

  • which tool do more strictly check code than c++compiler.
    D derek7

    good , do you have msn messenger? I wanna talk to you:)

    C / C++ / MFC c++

  • which tool do more strictly check code than c++compiler.
    D derek7

    lint seem to be complex. it is commerical software.

    C / C++ / MFC c++

  • how to see which macro was defined in a cpp unit?
    D derek7

    I do not know what is the macro name. it could be define at .h file in cpp you can not easily to search.

    C / C++ / MFC c++ tutorial question

  • how to see which macro was defined in a cpp unit?
    D derek7

    which tool or switch work for it?

    C / C++ / MFC c++ tutorial question

  • mfc42.dll < mfc42d.dll
    D derek7

    so debug version is large than retail. but did you see that? debug is smaller than retail.

    C / C++ / MFC announcement debugging question

  • MFC
    D derek7

    EndDialog

    C / C++ / MFC c++ question

  • ProcessShellCommand
    D derek7

    why is CView and CDocumnet created in the function?? any relation among them?

    C / C++ / MFC question

  • mfc42.dll < mfc42d.dll
    D derek7

    mfc42.dll 2.1k mfc42d.dll 1.466k why? debug version should large than release version.

    C / C++ / MFC announcement debugging question

  • MFC71 has no import function
    D derek7

    MFC71 depend many lib :msvcr71.dll kernel32.dll gdi32.dll etc... but I use depends.exe look mfc71 ,it no import function. why?

    C / C++ / MFC question

  • mfc CException class
    D derek7

    declaration in vc6 :virtual ~CException(); declaration in vc7 :virtual ~CException() = 0; try { if(nCount != sizeof(BITMAPFILEHEADER)) { throw new CException; } if(bmfh.bfType != 0x4d42) { throw new CException; } ................. } it work in vc6 ,it should pass compile but it should not pass link. but it all work in vc6.

    C / C++ / MFC c++

  • why was exception not handle?
    D derek7

    #include class ccc { public: ccc(int i) { m_i = i; } int m_i; }; void f(bool b) throw( ccc ) { if(b) { throw new ccc(5); } } main() { try { f(1); } catch (ccc) { std::cout<<"catch call"; abort(); } } the catch not run;

    C / C++ / MFC question

  • how to find which lib is a function in?
    D derek7

    dumbin and depends only work for dll. how about static lib?

    C / C++ / MFC tutorial question

  • error handle
    D derek7

    sorry ,the question : which error handle is right and commmon?

    C / C++ / MFC help tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups