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

Search:

Type: Posts; User: ocm7

Search: Search took 0.04 seconds.

  1. Re: How to return different array in different function?

    Also one thing you should consider is the maximum size of long double, assuming its 16 bytes then you get a maximum (signed) value of (2^128)-1, or 340282366920938463463374607431768211455. This is...
  2. Scroll Range not being set correctly during MDITile/MDICascade/SetWindowPos

    Hello,

    My current setup involves an MDI infrastructure with a fixed number of child windows (CFormView), each window with different controls, ranging from a single control to five or six. I am...
  3. Re: Multiple views wired to same CDocument, not with CMultiDocTemplate

    I fixed it using CCreateContext with each CMultiDocTemplate linking to only one instant of the same document class.
  4. Multiple views wired to same CDocument, not with CMultiDocTemplate

    Hi,

    Currently I have a quite advanced MDI application that has 5 views to the same document. I created these views with CMultiDocTemplate, realizing now that I don't have one document, I have 5...
  5. Replies
    6
    Views
    9,570

    Re: MFC Multiple views for different graphs

    Ok, I solved it but I wouldn't be surprised if there is a more efficient method. I added ON_WM_GETMINMAXINFO to the Message Map and overrode the OnGetMinMaxInfo as follows:


    void...
  6. Replies
    6
    Views
    9,570

    Re: MFC Multiple views for different graphs

    A good way to picture it would be the data being received is akin to a structure, my program then extracts the content of that structure and each member is plotted in a different graph. Serialization...
  7. Replies
    6
    Views
    9,570

    Re: MFC Multiple views for different graphs

    Thank you, I decided to go for MDI, Multi View Single Doc



    I have a sample of instantiating multiple views of the same document using CMultiDocTemplate, but I have a few questions.

    My...
  8. Replies
    6
    Views
    9,570

    MFC Multiple views for different graphs

    Hello,

    I am seeking to create an MFC application which displays several different graphs in different windows. For this I was thinking of using an MDI CFormView app in which each window/view...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured