473,395 Members | 1,666 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Font selection in COleControl::OnDraw

I designed a font "WAG Symbols" that contains symbols in the private use area of unicode.
Now I want to develop an insertable object that can handle these characters so they become visible in, let's say MS Word.

In Word, when the control is active, the unicdoe characters are displayed as should. When the control is inactive, the private use area characters are all replaced by ?
In the ActiveX Control Test Container this behaviour occurs when selecting Control ==Draw Metafile.

Any idea what causes this behaviour?

This is the code in the OnDraw member of my control:

void CWagRoutineXCtrl::OnDraw(
CDC* pdc, const CRect& rcBounds, const CRect& rcInvalid)
{
if (!pdc)
return;

// create and select it
CFont newFont;
newFont.CreateFont(
-20, // point size
0, 0, 0,
FW_NORMAL, // weight, also FW_BOLD
0, // if 1 = italic
0, // if 1 = underline
0, // if 1 = strike through
0, 0, 0, 0, 0,
_T("WAG Symbols") ); // typeface
CFont* pOldFont = pdc->SelectObject(&newFont);

CString cs;
cs.Format( _T("Unicode: %c%c%c"), 0xEA53, 0xEA5E, 0xEAA4 );
pdc->TextOut( 0, 0, cs );

pdc->SelectObject( pOldFont );
}
Aug 14 '07 #1
0 1049

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: lionel letoffet | last post by:
Hello, I wrote an ActiveX in MFC. I use it in a C# application (forms). My computer has a screen resolution of 1280x1024 with 96PPP (Important !!) I insert my activex in a form, I compile...
4
by: Anders Eriksson | last post by:
Hello! I'm using VC++ 7.1 and MFC. In a header file that is located in a different directory that the main project I include a header file that is located in the main project directory. The...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.