Subject: | Re: printing
| Date: | Mon, 20 Jul 2020 13:14:28 -0400
| From: | "Steven Green" <greens@diamondsg.com>
| Newsgroups: | pnews.paradox-development
|
> repInfo.PanelOptions = PrintClipToWidth
thanks, Tom.. that fixed it
--
Steven Green
Myrtle Beach, South Carolina, USA
http://www.OasisTradingPost.com
Collectibles and Memorabilia
Vintage Lego Sets and Parts
- and Paradox support, too
"Tom Krieg" wrote in message news:5f06b421$1@pnews.thedbcommunity.com...
Here we go.This is a part of a much bigger method and is contained in a
try/onFail
var
prnOptions PrinterOptionInfo
repInfo ReportPrintInfo
stReportName string
endvar
PrinterGetOptions(prnOptions)
prnOptions.PaperSize = prnA4
repInfo.Name = stReportName
repInfo.Orient = siOrient
repInfo.PanelOptions = PrintClipToWidth
PrinterSetOptions(prnOptions)
if NOT rHandle.print(repInfo) then
fail()
endif
On 9/07/2020 12:48 pm, Tom Krieg wrote:
> print command (printersetinfo or printeroptioninfo dynarray?) I haven't
> used this for a long time and don't have any of my old code handy. I
|