On Dec 13, 2006, at 5:56 PM, TJ Hanson, PhD wrote:
I print using PrintField (an editfield) inside a staging window
called PrintStage. I load the editfield, then send it to the
printer via DrawBlock. Briefly:
DIM STPPage As StyledTextPrinter
STPPage = PrintStage.PrintField.StyledTextPrinter
(g,PageWidth) // load block
STPPage.DrawBlock(40, 40, PageHeight) // send a block
to the printer
This allows printing in normal darkness. However, when I try to
load a font, or point size via:
PrintStage.PrintField.TextFont = "Andale Mono"
PrintStage.PrintField.TextSize = 8
then the printing changes to draft mode (very light). My
question is, how can I get it to print in normal mode (not
draft) while still assigning a font and point size?
I have one other question. Are these font and size changes being
attempted after the text in the editfield is already set? If that is
the case, you must make the changes using the various sel... methods
to the editfield before you send the text to the printer.
In other words, without a more complete understanding of your entire
code, we are shooting in the dark, so to speak. You have only
provided a very minimal amount of info and it's impossible to guess
at the rest of your coding.
Terry
PS. There is possibly a very simple fix but...???
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>