Posted 18 April 2020, 8:39 am EST - Updated 3 October 2022, 11:58 pm EST
Card report designed, indicated right, left, top and bottom edges to null, it doesn’t respect the left value.
Tried to set up from Code the size of the page with the value:
Dim tarjeta As New Printing.PaperSize tarjeta.Width = 540 tarjeta.Height = 860 Dim options As New C1.Win.C1Document.C1PrintOptions() options.PrinterSettings = New Printing.PrinterSettings() options.PageSettings = New Printing.PageSettings() 'Sin margenes options.PageSettings.PaperSize = tarjeta options.PageSettings.Margins.Left = 0 options.PageSettings.Margins.Right = 0 options.PageSettings.Margins.Top = 0 options.PageSettings.Margins.Bottom = 0 'orientation options.PageSettings.Landscape = True options.PrinterSettings.PrinterName = NombreImpresoraCarnet() ' report.Generate() report.Print(options.PrinterSettings)
Got the same results, it shows a left edge which wasn’t the indicated.
I would thank you to indicate me how to resolve this problem. Thanks