Jump to content

Recommended Posts

Posted

Vê se este exemplo ajuda: http://www.codeproject.com/KB/printing/printformcomponent.aspx

Ele mostra como definir as margens, que deverá servir para o que tu queres.

sim serviu 😕 obrigado.

para os quem tiver o mesmo problema:

  Private Sub PrintForm1_QueryPageSettings(ByVal sender As Object, ByVal e As System.Drawing.Printing.QueryPageSettingsEventArgs) Handles PrintForm1.QueryPageSettings

        Dim newMargins As System.Drawing.Printing.Margins

        newMargins = New System.Drawing.Printing.Margins(50, 50, 50, 50)

        e.PageSettings.Margins = newMargins

    End Sub

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.