I have an SDI application that acts as a console taking in lots of commands from user... one of these causes a bitmap to be read into memory and lots of associated info. - currently this is being done by acquiring a handle for the window and using the SDK CreateWindow() with the handle as one of the parameters - huge sections of code currently rely on the handle etc. - Now this display needs more functionality - I could create a CWnd using CWnd::FromHandle but really I'd like the functionality of CScrollView & Doc - Being inexperienced I've only ever created these classes as part of a new SDI application - can I attach them to this new window? If so what's the best way to use the development enviroment, initialise the Doc. etc. without creating a new SDI?
Many thanks,
Rachel