1. Yossi Dallal
  2. PowerBuilder
  3. Sunday, 29 October 2023 09:12 AM UTC

Hi, this issue is since PB2017 and now we see the same behavior in PB2022 R2.

The text under the X and Y coordinate appears in the opposite direction and I

believe that it is the same in all right to left languages.

Attachments (1)
Accepted Answer
Chris Pollach @Appeon Accepted Answer Pending Moderation
  1. Monday, 30 October 2023 11:24 AM UTC
  2. PowerBuilder
  3. # Permalink
Ahhhh ok - you're using the native PDF (built-in) feature. This should not happen. If this is a repeatable issue, I would open a Support Ticket & attach your problem graph DWO source code to the ticket. Regards ... Chris
Comment
There are no comments made yet.
Yossi Dallal Accepted Answer Pending Moderation
  1. Monday, 30 October 2023 08:34 AM UTC
  2. PowerBuilder
  3. # 1

Hi Chris,

This is the code that I am using to save the graph as pdf.

The user choose where to save the pdf.

/*--------------------------------------------NativePDF--------------------------------------------*/
dw_report.Object.DataWindow.Export.PDF.NativePDF.UsePrintSpec = 'Yes'
dw_report.Object.DataWindow.Export.PDF.Method = NativePDF!
dw_report.Object.DataWindow.Export.PDF.NativePDF.PDFStandard = 0 // 0 None
dw_report.Object.DataWindow.Print.Orientation = 2 // 1=Landscape , 2=Portrait
dw_report.Object.DataWindow.Print.Paper.Size = 9 //A4
/***********************************************************************/

Integer    li_return

li_return = dw_report.SaveAs( "" , PDF! , TRUE )

IF li_return <> 1 THEN
    MessageBox( "Export to PDF" , "Failed" )
END IF

Comment
There are no comments made yet.
Chris Pollach @Appeon Accepted Answer Pending Moderation
  1. Sunday, 29 October 2023 16:28 PM UTC
  2. PowerBuilder
  3. # 2

Hi Yossi;

  What mechanism are you using to generate the PDF ... For example NativePDF, external software?

Regards ... Chris 

Comment
There are no comments made yet.
  • Page :
  • 1


There are no replies made for this question yet.
However, you are not allowed to reply to this question.