May 28, 200818 yr 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.EndDocEnd Subedit ++++++++++++++++found a command that would workPrivate Sub Command1_Click()Dim Msg ' Declare variable.On Error GoTo ErrorHandler ' Set up error handler.PrintForm ' Print form.Exit SubErrorHandler:Msg = "The form can't be printed."MsgBox Msg ' Display message.Resume NextEnd Subonly 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 May 29, 200818 yr by Redhatcc
Create an account or sign in to comment