OK Im new to XoJo, but enjoying it.
Have a specific problem at the moment and Im going round and round in circles- I’m sure its something simple!
Code:
Dim ps As New PrinterSetup
ps.MaxHorizontalResolution = 300
ps.MaxVerticalResolution = 300
Dim g As Graphics
g = OpenPrinterDialog(ps, Nil)
If g <> Nil Then
rpt.LabelMainText.Text=gTextToPrint
If rpt.Run(xrs, ps) Then
rpt.Document.Print(g)
End If
End If
problem is the gTextToPrint - it is not printing correctly and long paragraphs seem to be overlapping on printing
the text is plain text, Im sure its not a bug… but I don’t sew what other options I can change or add.
Richard