hi, i need help on change custom paper
this is my case
i create document using printing system
then i use printcontrol to preview my print
after i show the printcontrol the document is show,
but when i change papersize use my button the document doesn't show
this is my button source code to change the papersize
Dim MyPaperSize As New System.Drawing.Printing.PaperSize("Custom Paper Size", 500, 550)
Dim MyMargins As New System.Drawing.Printing.Margins(0, 0, 0, 0)Dim MyPageSettings As New System.Drawing.Printing.PageSettings
MyPageSettings.PaperSize = MyPaperSize
MyPageSettings.Margins = MyMargins
PrintingSystem1.PageSettings.Assign(MyPageSettings)
pls help me... if i use pagesetup change the paperkind, it's work
but if use my code to change paper size it doesn't work
thx