Create mfc math expression (VS6)

I need to write some math expressions (like matrix and math variables ...) into my GUI.

MFC's static control is very limited on this issue. Especially for mathematics. symbols.

Is there some kind of control or other way to do this?

+2


source to share


4 answers


OK, everything I did is a little messy now, but I put everything together with static controls and changed the font to Symbol from microsoft to get Greek letters.

You may need to resize and move some of the controls, but it seems to work.



So everything is generally dirty.

+1


source


You can check out MFC Grid Control:
http://www.codeproject.com/KB/miscctrl/gridctrl.aspx



+1


source


There is only one good math editor, see http://www.dessci.com/en/products/mathplayer/ . It's not so much a ready-to-use control, but it may or may not work for your application.

Consider using equations like TeX in your application. Again, depending on your audience, this may or may not be an option.

+1


source


You can use calc from openoffice and save the formula as an image. Then you can display it in your gui. I hope this helps you.

0


source







All Articles