At 12:02 AM 6/26/2010, Tom Frederick wrote:
If I simply run a print command which avoids the V9 Viewer,
the printed report comes out as it should with checkboxes.
Tom,
Without knowing all details, what exact syntax are you using
to print the report as PDF?
A few suggestions:
01. Try the following (very simple) syntax to PRINT the report
as PDF.
-- Start here
CONNECT dbname
SET VAR vChkFile = (CHKFILE('PDF'))
IF vChkFile <> 1 THEN
MD PDF
ENDIF
CLS
PRINT reportname +
OPTION PDF +
|FILENAME PDF\reportname.PDF +
|SUBJECT report subject here ... +
|TITLE report title here ... +
|AUTHOR report author here ... +
|KEYWORDS report keywords here ... +
|OPEN OFF
LABEL Done
CLEAR VARIABLE vChkFile
RETURN
-- End here
02. Then, use the same report to view in PDF Viewer and see what
results you get.
If you still have the same problem, I suggest to submit a request
with sample database and all details to RBG9 R:DCC Team using the
built-in RBG9 R:DCC Client in R:BASE eXtreme 9.0.
Very Best R:egards,
Razzak.