 | | From: | Dale McIntosh | | Subject: | chooseprinter method of printer | | Date: | Thu, 13 Jan 2005 13:49:22 -0500 |
|
|
 | what is the code and where do I put it to call the printer chooseprinter method in a report.
Thanks!
|
|
 | | From: | Dale McIntosh | | Subject: | Re: chooseprinter method of printer | | Date: | Thu, 13 Jan 2005 14:42:49 -0500 |
|
|
 | Dale McIntosh Wrote:
> what is the code and where do I put it to call the printer chooseprinter method in a report. > > Thanks!
forgot to mention version is 7.5
|
|
 | | From: | Ken Mayer [dBVIPS] | | Subject: | Re: chooseprinter method of printer | | Date: | Thu, 13 Jan 2005 12:45:56 -0800 |
|
|
 | Dale McIntosh wrote: > Dale McIntosh Wrote: > > >>what is the code and where do I put it to call the printer chooseprinter method in a report. >> >>Thanks! > > > forgot to mention version is 7.5
something like:
set procedure to MyReport.rep additive r = new MyReport() r.output := 1 // Printer r.printer.choosePrinter() r.render()
Ken
-- /(Opinions expressed are purely my own, not those of dataBased Intelligence, Inc.)/
*Ken Mayer* [dBVIPS] /Golden Stag Productions/ dBASE at goldenstag dot net http://www.goldenstag.net/GSP http://www.goldenstag.net/dbase
|
|
 | | From: | Dale McIntosh | | Subject: | Re: chooseprinter method of printer | | Date: | Thu, 13 Jan 2005 17:14:25 -0500 |
|
|
 | That did it. Thanks again.
Ken Mayer [dBVIPS] Wrote:
> Dale McIntosh wrote: > > Dale McIntosh Wrote: > > > > > >>what is the code and where do I put it to call the printer chooseprinter method in a report. > >> > >>Thanks! > > > > > > forgot to mention version is 7.5 > > something like: > > set procedure to MyReport.rep additive > r = new MyReport() > r.output := 1 // Printer > r.printer.choosePrinter() > r.render() > > Ken > > -- > /(Opinions expressed are purely my own, not those of dataBased > Intelligence, Inc.)/ > > *Ken Mayer* [dBVIPS] > /Golden Stag Productions/ > dBASE at goldenstag dot net > http://www.goldenstag.net/GSP > http://www.goldenstag.net/dbase
|
|