#1   Report Post  
Kris
 
Posts: n/a
Default Print a form

Hi,

How can I print a form with flexible data on a printer selected by the user?

Thens
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

What does flexible data mean?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Kris" wrote in message
...
Hi,

How can I print a form with flexible data on a printer selected by the

user?

Thens



  #3   Report Post  
Christophero
 
Posts: n/a
Default

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 Phillips" wrote:

What does flexible data mean?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Kris" wrote in message
...
Hi,

How can I print a form with flexible data on a printer selected by the

user?

Thens




  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default



--

HTH

RP
(remove nothere from the email address if mailing direct)


"Christophero" wrote in message
...
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 Phillips" wrote:

What does flexible data mean?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Kris" wrote in message
...
Hi,

How can I print a form with flexible data on a printer selected by the

user?

Thens






  #5   Report Post  
Bob Phillips
 
Posts: n/a
Default

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)


"Christophero" wrote in message
...
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 Phillips" wrote:

What does flexible data mean?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Kris" wrote in message
...
Hi,

How can I print a form with flexible data on a printer selected by the

user?

Thens






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Print and Print Preview don't match screen JNohl Excel Worksheet Functions 0 March 11th 05 05:23 PM
set the print area print multiple tabs veng Excel Discussion (Misc queries) 5 February 12th 05 07:01 PM
Printing - Have to set print area 1 column further than necessary STUART BISSET Excel Discussion (Misc queries) 0 January 24th 05 07:59 PM
Trying to delete form border, and it deletes all borders PeterM Excel Discussion (Misc queries) 11 January 3rd 05 03:36 PM
Non-Breaking Space + Print Issue Barb Reinhardt Charts and Charting in Excel 3 December 9th 04 01:03 AM


All times are GMT +1. The time now is 12:52 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"