+ Reply to Thread
Results 1 to 2 of 2

Print Form

  1. #1
    Jason Zischke
    Guest

    Print Form

    Is there a way to get userform.printform to print landscape

  2. #2
    Jim Rech
    Guest

    Re: Print Form

    I found this Tom Ogilvy post on Google. It copies the userform to a
    worksheet and then prints it from there. You would have to enhance the
    macro to change the page orientation before printing.

    --
    Jim

    ===============================

    You are correct and I was wrong. Here is a version that will capture just
    the userform:

    Modification of code originally posted by
    "Orlando Magalhães Filho" <orlan...@geocities.com.br>


    Modified to capture just the userform (not the whole window).


    In a general module:


    Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, _
    ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)


    Public Const VK_SNAPSHOT = 44
    Public Const VK_LMENU = 164
    Public Const KEYEVENTF_KEYUP = 2
    Public Const KEYEVENTF_EXTENDEDKEY = 1


    Sub Test()
    UserForm1.Show
    End Sub


    In the userform module:


    Private Sub CommandButton1_Click()
    ' keybd_event VK_SNAPSHOT, 0, 0, 0
    DoEvents
    keybd_event VK_LMENU, 0, KEYEVENTF_EXTENDEDKEY, 0
    keybd_event VK_SNAPSHOT, 0, KEYEVENTF_EXTENDEDKEY, 0
    keybd_event VK_SNAPSHOT, 0, KEYEVENTF_EXTENDEDKEY + _
    KEYEVENTF_KEYUP, 0
    keybd_event VK_LMENU, 0, KEYEVENTF_EXTENDEDKEY + _
    KEYEVENTF_KEYUP, 0
    DoEvents
    Workbooks.Add
    Application.Wait Now + TimeValue("00:00:01")
    ActiveSheet.PasteSpecial Format:="Bitmap", Link:=False,
    DisplayAsIcon:=False
    ActiveSheet.Range("A1").Select
    ActiveWindow.SelectedSheets.PrintOut Copies:=1
    ActiveWorkbook.Close False
    End Sub


    "Jason Zischke" <JasonZischke@discussions.microsoft.com> wrote in message
    news:E2121821-10C0-44A2-A823-3EB53FCE5C8E@microsoft.com...
    | Is there a way to get userform.printform to print landscape



+ 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