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 represents a different graph.

Currently I am using a dialog based solution which displays only one graph, however my future needs will require more graphs to be displayed simultaneously so I'm accounting for that now.

If I were to use MDI would I be able to create multiple views, each with its own title? Blocking the File->New button is simple enough and I can deal with the document/view architecture. Basically I would like to know if MDI is the best approach for this or not.

-ocm