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

View Poll Results: Which is the best approach?

Voters
7. You may not vote on this poll
  • SDI-a dialog bar docked in the left side, and multiple views in the client area of main frame

    0 0%
  • SDI-a static splitter window with two panes

    2 28.57%
  • MDI-a dialog bar docked in the left side of main frame window, and multiple child frames

    2 28.57%
  • Dialog-based-a child dialog containing patient info and multiple child dialogs at the right

    3 42.86%
  • Other-please specify

    0 0%
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2004
    Location
    Romania
    Posts
    45

    SDI/MDI/Dialog-based

    I have to start developing an application using Visual C++ that keeps the patients of an hospital.

    The UI requirements are:
    1. in the left side of application always is a group of controls those shows patient info: ID, name, birth date, and so on.
    2. in the right side may be seen different changeable (from menu and/or toolbar) views containing, for example, the results of different analyses, different graphs, tables, histograms, and so on.

    My question is: which of above approaches you recommend?
    Try T H I S

    Mick

  2. #2
    Join Date
    Oct 2003
    Location
    Romania
    Posts
    127

    Re: SDI/MDI/Dialog-based

    Dialog-based - more to work but easier to handle.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured