Hello All,
Our large application is currently in production both 32 & 64 bit distribution (12.6). In *64* bit we discovered 2 serious RTE (DW & Control) flaws. In a nutshell "no way to import OR print OR email legalese"
We know that 2017 R2 will include 64 bit RTE functionality - but we need it now!
1) import Doc / Import RTF fail. Only import TXT works ( or very simple RTF)
2) SaveAs PDF fails
Currently we use RTF DW functionality to print RTF 'legalese' on the reverse side of documents
We are considering using a 3rd party RTControl but - how can we send it's print output to the queue that was started in PB?
int iMyPrintJob
iMyPrintJob = PrintOpen('myjob')
printdatawindow( iMyPrintJob, dw_side1)
// -- How to pass Print Job to another program - then get it back
printdatawindow( iMyPrintJob, dw_legalese) //fails in 64 bit because import RTF document failed - we'd like to replace with 3rd party control - h
//
printdatawindow( iMyPrintJob, dw_side3) //etc
PrintClose( iMyPrintJob )
Not having 64 bit RTE until 2018, just lengthens the pain and strengthens our need to go 3rd party for the short term.
Incidentally, there is no PowerScript overload to print the contents of an RTE control to a specific print job. The only way to insert RichText into a print Job is via an RTE DW. - We would welcome having that ability