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

Search:

Type: Posts; User: buyong

Search: Search took 0.01 seconds.

  1. Replies
    14
    Views
    8,643

    Re: MFC Class Wizard Problem

    I think maybe you need check if you choose the right class name you want.
  2. Replies
    6
    Views
    1,469

    Re: Getting ideas for a graph

    you can use CXImage
    http://www.codeproject.com/KB/graphics/cximage.aspx
  3. Re: Why doesn't the flag UF_PASSWORD_EXPIRED get set?

    UF_PASSWORD_EXPIRED only good for win xp.
    UF_PASSWORD_EXPIRED Windows XP: The user 's password has expired.
  4. Replies
    5
    Views
    912

    Re: Problem in Reading File.

    you can judge the return of ReadString,

    from MSDN:
    Return Value

    A pointer to the buffer containing the text data. NULL if end-of-file was reached without reading any data; or if boolean, FALSE...
  5. Replies
    6
    Views
    882

    Re: Problem with Modal Dialog

    you'd better put your code about how you open your dialog and what property it have
  6. Replies
    6
    Views
    7,539

    Re: Loading image from DIB

    if you want to display a jpeg image
    you can use IPicture. or use CXImage, it is an open source project.

    you can put your function "viewimageex" code here. maybe someone can help you
  7. Replies
    7
    Views
    6,955

    Re: Drawing in Dialog in VC++ MFC

    you can use CreateCompatibleDC to create a DC in memory, and use CreateCompatibleBitmap to create a client for your memory dc, and draw what you need in this memory dc, and then use BitBlt to put...
  8. Replies
    6
    Views
    882

    Re: Problem with Modal Dialog

    I tested what you said. I have three dlg.
    in a button of dlg1, I make dlg2 DoModel, code link:
    void CDlgA::OnButton1()
    {
    // TODO: Add your control notification handler code here
    CDlgB dlg_b;...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured