missing text using PlayEnhMetaFile in IE print DC
Tue, 22 Jul 2008 02:00:00 -0700
hi Everybody,
this is a follow-up issue on a thread which has been discussed earlier.
The last hints I received came in from Jeffrey Tan [MSFT] on May 26 2006.
It has never beed solved, and some customer requests require me to follow-up
on this.
Let me resume what we had so far.
We use the below code ...
|
Transparent child window
Mon, 21 Jul 2008 15:37:06 -0400
I have a child window with a light-colored background color brush, which
I want to be transparent so that the underlying parent window shows
through the background. A layered window does not work with a child
window. Is there any way I can do this with a child window ? ...
|
GDI Limit
Mon, 21 Jul 2008 10:10:27 +0200
I programmed with VC 8.0 and GDI+ im MM_TEXT Mode. If I draw a polygon with
the function that accepts REAL's as parameters. It seemce to me that there
is still the -32000/+32000 Limit for the coordinates. I have strange
effects if I overcome this limit. Ii that true or can be something else
wrong ?
Thomas ...
|
How to merge font subset and font delta extracted from EMF spool
file.
Fri, 18 Jul 2008 11:02:40 -0700 (PDT)
Hi,
I am extracting fonts from EMF spool files.
The Enhanced Metafile Spool Format Specification (http://
msdn.microsoft.com/en-us/library/cc204694.aspx) defines 2 records for
TrueType font subset and delta:
EMRI_SUBSET_FONT and EMRI_DELTA_FONT
I have no problem extracting the data for those 2 records. M ...
|
Exclusive mode and Startup Group
Thu, 17 Jul 2008 08:34:01 -0700
Is there a reason in Vista that applications put in the Run registry key will
not go fullscreen exclusive mode operation but will do so when put into the
startup group? This behavior has come to my attention, and I am at a loss to
explain why. ...
|
Drag-and-drop from an HMENU
Wed, 16 Jul 2008 13:02:41 -0700 (PDT)
Is it possible to enable drag-and-drop from an HMENU? If so, could
someone please provide some pointers on how I would go about doing
that?
Thanx!
Chris ...
|
Rounding errors between GDI+ & GDI ...
Wed, 16 Jul 2008 16:14:24 +0200
Hello,
Please consider the following code :
void Test (HDC hDC)
{
// Set graphics mode to 72 dpi ...
SetMapMode(hDC, MM_ISOTROPIC);
SetWindowExtEx(hDC, 72, 72, NULL);
SetViewportExtEx(hDC, GetDeviceCaps(hDC, LOGPIXELSX),
GetDeviceCaps(hDC, LOGPIXELSY), NULL);
SetGraphicsMode(hDC, GM_ADVANCED);
...
|
|
|
StrokeAndFillPath vs. StrokePath and FillPath called seperately
Fri, 11 Jul 2008 15:32:02 -0700
I know the difference between the two ways of stroking and filling the path
is the concurrency. In what situations would the client application want to
take advantage of the concurrency by calling StrokeAndFillPath rather than
calling StrokePath and FillPath separately? ...
|
GDI+ HitTest too slow
Fri, 11 Jul 2008 15:57:51 +0200
Hello,
I am drawing some paths on a form, which shall be highlighted on the
MouseOver event.
Normally I would use some PointInRect function because it's the fastest,
but the problem is that my GDI+ paths are not always rectangles. GDI+
has some hit test functions like the GdipIsVisiblePathPoint function,
...
|
Sending keyboard inputs to combobox
Thu, 10 Jul 2008 17:03:15 -0700
I am trying to create a on screen key board.
I simply want to send a key (Simulate the keyboard) to a combo box using the Handle of the control.
The below code is not working
public const ushort WM_KEYDOWN = 0x0100;
public const ushort WM_KEYUP = 0x0101;
//Set the active window
...
|