Jump to content

Printing In VB 6.0 ?


Recommended Posts

all sumed up i have a vb application that you can fill stuff out in, and has a print button you click that prints the application out.. is there a way to print the entire application instead of having to fill out this long print command stuff?

lol here's an example of something that i tried but didnt work...

Private Sub Command1_Click()
Printer.Print Form1
Printer.EndDoc
End Sub

edit ++++++++++++++++

found a command that would work

Private Sub Command1_Click()
Dim Msg ' Declare variable.
On Error GoTo ErrorHandler ' Set up error handler.
PrintForm ' Print form.
Exit Sub
ErrorHandler:
Msg = "The form can't be printed."
MsgBox Msg ' Display message.
Resume Next
End Sub

only bad thing is when i go to print it doesnt center the form, it prints it to the top left corner.

does anyone have an idea how to make it print mabe top center or dead center of the page?

thanks!

Edited by Redhatcc
Link to comment
Share on other sites


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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...