Change the font in a CEditView
-
I'd like to change the font for my CEditView in my MFC Doc/view application. I am using VC++ 6. Anybody know how? :doh: Thanks, David.
-
I'd like to change the font for my CEditView in my MFC Doc/view application. I am using VC++ 6. Anybody know how? :doh: Thanks, David.
Use
SetFont()
. Just be sure that the font you are using has the same life span as the view.
[
](http://www.canucks.com)"You're obviously a superstar." - Christian Graus about me - 12 Feb '03 "Obviously ??? You're definitely a superstar!!!" mYkel - 21 Jun '04 Within you lies the power for good - Use it!
-
Use
SetFont()
. Just be sure that the font you are using has the same life span as the view.
[
](http://www.canucks.com)"You're obviously a superstar." - Christian Graus about me - 12 Feb '03 "Obviously ??? You're definitely a superstar!!!" mYkel - 21 Jun '04 Within you lies the power for good - Use it!
Works perfect! Thanks a lot! :) David