CRichEditView
-
I found out how to turn my MDI into a text interface, but using this: #include class CFDPViewRE : public CRich2EditView { protected: CFDPViewRE(); // protected constructor used by dynamic creation DECLARE_DYNCREATE(CFDPViewRE) public: virtual void OnInitialUpdate(); protected: virtual ~CFDPViewRE(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: DECLARE_MESSAGE_MAP() }; For some damn reason, it by default is always bold, if I write in comands for a bold button, then you can highlight text and un bold it, or click the bold button and type non bold text, but when you open the program, the bold button is already checked. I take out all of the code for bold from my program, and still the text is bold. Therefor I started from scratch. The above is all I have really other than the supporting .h file that has no refrences whatsoever to bold or weight or font. I for the life of me can't figure out how to get it so it isn't bold font. Maybe I need to use another type of text thing other than rich text, but I don't know much about this stuff yet. Any ideas? LOSTTWARE.com