+ Reply to Thread
Results 1 to 6 of 6

Print a form

  1. #1
    Kris
    Guest

    Print a form

    Hi,

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

    Thens

  2. #2
    Bob Phillips
    Guest

    Re: Print a form

    What does flexible data mean?

    --

    HTH

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


    "Kris" <Kris@discussions.microsoft.com> wrote in message
    news:6E084654-FCA9-4475-B1E9-F539D74A5666@microsoft.com...
    > Hi,
    >
    > How can I print a form with flexible data on a printer selected by the

    user?
    >
    > Thens




  3. #3
    Registered User
    Join Date
    03-03-2005
    Posts
    23
    Do u mean print certain data i.e. say u have dat in cells A1:B10, but u only want to print say cells A3: B4.. ?? Is that wot u mean by flexible data..??

  4. #4
    Christophero
    Guest

    Re: Print a form

    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" <Kris@discussions.microsoft.com> wrote in message
    > news:6E084654-FCA9-4475-B1E9-F539D74A5666@microsoft.com...
    > > Hi,
    > >
    > > How can I print a form with flexible data on a printer selected by the

    > user?
    > >
    > > Thens

    >
    >
    >


  5. #5
    Bob Phillips
    Guest

    Re: Print a form



    --

    HTH

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


    "Christophero" <Christophero@discussions.microsoft.com> wrote in message
    news:F62C8452-4F44-48B0-B103-4D41AA08B4DD@microsoft.com...
    > 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" <Kris@discussions.microsoft.com> wrote in message
    > > news:6E084654-FCA9-4475-B1E9-F539D74A5666@microsoft.com...
    > > > Hi,
    > > >
    > > > How can I print a form with flexible data on a printer selected by the

    > > user?
    > > >
    > > > Thens

    > >
    > >
    > >




  6. #6
    Bob Phillips
    Guest

    Re: Print a form

    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" <Christophero@discussions.microsoft.com> wrote in message
    news:F62C8452-4F44-48B0-B103-4D41AA08B4DD@microsoft.com...
    > 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" <Kris@discussions.microsoft.com> wrote in message
    > > news:6E084654-FCA9-4475-B1E9-F539D74A5666@microsoft.com...
    > > > Hi,
    > > >
    > > > How can I print a form with flexible data on a printer selected by the

    > > user?
    > > >
    > > > Thens

    > >
    > >
    > >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1