Subject: | Re: Pdox11 - Win11 - Print
| Date: | Mon, 15 Jul 2024 04:47:05 +0200
| From: | "Ivan" <ivan.moro@web.de>
| Newsgroups: | pnews.paradox-programming
|
Hi Richard,
Just a small workaround that might help.
I've a form with a print-Button.
This Button does only the following:
var
r Report
endVar
r.print("myReport")
I don't know why. suddenly it does not print (I saw it by now only in this
form).
Then I've made some attempts and the following version works again:
var
r Report
endVar
r.open("myReport", WinStyleHidden)
r.print("myReport")
r.close()
I don't know, if this is a common solution, but in that form it works.
If that problem will later appear within other forms too, then I'll try to
solve it with my own Library - print function, which will replace the
original Report - print function.
Ciao
Ivan
---
Diese E-Mail wurde von AVG auf Viren geprüft.
http://www.avg.com
|