Hi, How can I print a form with flexible data on a printer selected by the user? Thens
K Kris Mar 23, 2005 #1 Hi, How can I print a form with flexible data on a printer selected by the user? Thens
B Bob Phillips Mar 23, 2005 #2 What does flexible data mean? -- HTH RP (remove nothere from the email address if mailing direct)
C Christophero Mar 23, 2005 #3 Bob, The form will be filled automatically with dropdownboxes en labels heving a different value. By changing a dropdownbox, the value of different labels will change. I want a print out of one such version.
Bob, The form will be filled automatically with dropdownboxes en labels heving a different value. By changing a dropdownbox, the value of different labels will change. I want a print out of one such version.
B Bob Phillips Mar 23, 2005 #5 You could add a Print button, and add this code Private Sub cmdPrint_Click() Dim fOK As Boolean Dim sPrinter As String With Application sPrinter = .ActivePrinter fOK = .Dialogs(xlDialogPrint).Show End With If fOK Then Me.PrintForm Application.ActivePrinter = sPrinter End If End Sub -- HTH RP (remove nothere from the email address if mailing direct)
You could add a Print button, and add this code Private Sub cmdPrint_Click() Dim fOK As Boolean Dim sPrinter As String With Application sPrinter = .ActivePrinter fOK = .Dialogs(xlDialogPrint).Show End With If fOK Then Me.PrintForm Application.ActivePrinter = sPrinter End If End Sub -- HTH RP (remove nothere from the email address if mailing direct)