把纸张定义为三分之一高的241纸,当报表打印时,为什么会竖着打?
比如:我用自定义纸张:10×11寸的纸打印时,报表是横向打印的,这是我希望的格式。
但当我把纸张定义为10×(11/3)即高度为标准的三分之一时,预览是横向,但打印出来却是竖向的。为什么?我是用VB的自身的报表工具做的。
我要加60分哟。

解决方案 »

  1.   

    老兄,我也做过套打的程序,也是自定义纸张类型。当时用的也是MS VB6自带的那个变态的报表设计器,只要你的纸张类型不是标准的纸张(A4)类型,那打印进就是像你所说的竖向打印。我是用一些类,来实现打印的,且改变成了横向打印。源码如下:
    1>orient.bas'------COMMENTS'For use on NT:
    '  When adding a printer icon to the printer folder (when you double-
    '  click on "Add Printer"), it is important to choose to save printer
    '  settings on "My Computer" rather than on "Network Printer Server".
    '  If "Network Printer Server" is used, then SetPrinter will fail
    '  unless the user has privileges on the network printer server to
    '  change the network server's global settings - in which case ALL
    '  users of that printer are affected.  Whereas, when "My Computer"
    '  is selected, the user only needs privileges on the local NT machine
    '  and no one else is affected.'HP LaserJet 5si
    '  As of 3/2/98,  The HP LaserJet 5si printer driver does not work
    '  properly with the SetPrinter API call.  After using this code,
    '  the 5si properties in the Printer folder are unaffected.
    '  3/2/98  --  The current workaround is to use the HP 4si driver.
    '------CONSTANTS'Constants used in the DevMode structure
    Private Const CCHDEVICENAME = 32
    Private Const CCHFORMNAME = 32'Constants for NT security
    Private Const STANDARD_RIGHTS_REQUIRED = &HF0000
    Private Const PRINTER_ACCESS_ADMINISTER = &H4
    Private Const PRINTER_ACCESS_USE = &H8
    Private Const PRINTER_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED Or PRINTER_ACCESS_ADMINISTER Or PRINTER_ACCESS_USE)'Constants used to make changes to the values contained in the DevMode
    Private Const DM_MODIFY = 8
    Private Const DM_IN_BUFFER = DM_MODIFY
    Private Const DM_COPY = 2
    Private Const DM_OUT_BUFFER = DM_COPY
    Private Const DM_DUPLEX = &H1000&
    Public Const DMDUP_SIMPLEX = 1
    Private Const DMDUP_VERTICAL = 2
    Private Const DMDUP_HORIZONTAL = 3
    Private Const DM_ORIENTATION = &H1&
    '------USER DEFINED TYPES'The DevMode structure contains printing parameters.
    'Note that this only represents the PUBLIC portion of the DevMode.
    '  The full DevMode also contains a variable length PRIVATE section
    '  which varies in length and content between printer drivers.
    'NEVER use this User Defined Type directly with any API call.
    '  Always combine it into a FULL DevMode structure and then send the
    '  full DevMode to the API call.
    Private Type DEVMODE
        dmDeviceName As String * CCHDEVICENAME
        dmSpecVersion As Integer
        dmDriverVersion As Integer
        dmSize As Integer
        dmDriverExtra As Integer
        dmFields As Long
        dmOrientation As Integer
        dmPaperSize As Integer
        dmPaperLength As Integer
        dmPaperWidth As Integer
        dmScale As Integer
        dmCopies As Integer
        dmDefaultSource As Integer
        dmPrintQuality As Integer
        dmColor As Integer
        dmDuplex As Integer
        dmYResolution As Integer
        dmTTOption As Integer
        dmCollate As Integer
        dmFormName As String * CCHFORMNAME
        dmLogPixels As Integer
        dmBitsPerPel As Long
        dmPelsWidth As Long
        dmPelsHeight As Long
        dmDisplayFlags As Long
        dmDisplayFrequency As Long
        dmICMMethod As Long        '// Windows 95 only
        dmICMIntent As Long        ' // Windows 95 only
        dmMediaType As Long        ' // Windows 95 only
        dmDitherType As Long       ' // Windows 95 only
        dmReserved1 As Long        ' // Windows 95 only
        dmReserved2 As Long        ' // Windows 95 only
    End TypePrivate Type PRINTER_DEFAULTS
    'Note:
    '  The definition of Printer_Defaults in the VB5 API viewer is incorrect.
    '  Below, pDevMode has been corrected to LONG.
        pDatatype As String
        pDevMode As Long
        DesiredAccess As Long
    End Type
      

  2.   

    '继续上面的
    '------DECLARATIONSPrivate Declare Function OpenPrinter Lib "winspool.drv" Alias "OpenPrinterA" (ByVal pPrinterName As String, phPrinter As Long, pDefault As PRINTER_DEFAULTS) As Long
    Private Declare Function SetPrinter Lib "winspool.drv" Alias "SetPrinterA" (ByVal hPrinter As Long, ByVal Level As Long, pPrinter As Any, ByVal Command As Long) As Long
    Private Declare Function GetPrinter Lib "winspool.drv" Alias "GetPrinterA" (ByVal hPrinter As Long, ByVal Level As Long, pPrinter As Any, ByVal cbBuf As Long, pcbNeeded As Long) As Long
    Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)
    Private Declare Function ClosePrinter Lib "winspool.drv" (ByVal hPrinter As Long) As Long'The following is an unusual declaration of DocumentProperties:
    '  pDevModeOutput and pDevModeInput are usually declared ByRef.  They are declared
    '  ByVal in this program because we're using a Printer_Info_2 structure.
    '  The pi2 structure contains a variable of type LONG which contains the address
    '  of the DevMode structure (this is called a pointer).  This LONG variable must
    '  be passed ByVal.
    '  Normally this function is called with a BYTE ARRAY which contains the DevMode
    '  structure and the Byte Array is passed ByRef.
    Private Declare Function DocumentProperties Lib "winspool.drv" Alias "DocumentPropertiesA" (ByVal hwnd As Long, ByVal hPrinter As Long, ByVal pDeviceName As String, ByVal pDevModeOutput As Any, ByVal pDevModeInput As Any, ByVal fMode As Long) As Long
    '------CODEPublic Sub SetOrientation(NewSetting As Long, chng As Integer)
        Dim PrinterHandle As Long
        Dim PrinterName As String
        Dim pd As PRINTER_DEFAULTS
        Dim MyDevMode As DEVMODE
        Dim Result As Long
        Dim Needed As Long
        Dim pFullDevMode As Long
        Dim pi2_buffer() As Long     'This is a block of memory for the Printer_Info_2 structure
            'If you need to use the Printer_Info_2 User Defined Type, the
            '  definition of Printer_Info_2 in the API viewer is incorrect.
            '  pDevMode and pSecurityDescriptor should be defined As Long.
        
        PrinterName = Printer.DeviceName
        If PrinterName = "" Then
            Exit Sub
        End If
        
        pd.pDatatype = vbNullString
        pd.pDevMode = 0&
        'Printer_Access_All is required for NT security
        pd.DesiredAccess = PRINTER_ALL_ACCESS
        
        Result = OpenPrinter(PrinterName, PrinterHandle, pd)
        
        'The first call to GetPrinter gets the size, in bytes, of the buffer needed.
        'This value is divided by 4 since each element of pi2_buffer is a long.
        Result = GetPrinter(PrinterHandle, 2, ByVal 0&, 0, Needed)
        ReDim pi2_buffer((Needed \ 4))
        Result = GetPrinter(PrinterHandle, 2, pi2_buffer(0), Needed, Needed)
        
        'The seventh element of pi2_buffer is a Pointer to a block of memory
        '  which contains the full DevMode (including the PRIVATE portion).
        pFullDevMode = pi2_buffer(7)
        
        'Copy the Public portion of FullDevMode into our DevMode structure
        Call CopyMemory(MyDevMode, ByVal pFullDevMode, Len(MyDevMode))
        
        'Make desired changes
        MyDevMode.dmDuplex = NewSetting
        MyDevMode.dmFields = DM_DUPLEX Or DM_ORIENTATION
        MyDevMode.dmOrientation = chng
        
        'Copy our DevMode structure back into FullDevMode
        Call CopyMemory(ByVal pFullDevMode, MyDevMode, Len(MyDevMode))
        
        'Copy our changes to "the PUBLIC portion of the DevMode" into "the PRIVATE portion of the DevMode"
        Result = DocumentProperties(Form1.hwnd, PrinterHandle, PrinterName, ByVal pFullDevMode, ByVal pFullDevMode, DM_IN_BUFFER Or DM_OUT_BUFFER)
        
        'Update the printer's default properties (to verify, go to the Printer folder
        '  and check the properties for the printer)
        Result = SetPrinter(PrinterHandle, 2, pi2_buffer(0), 0&)
        
        Call ClosePrinter(PrinterHandle)
        
        'Note: Once "Set Printer = " is executed, anywhere in the code, after that point
        '      changes made with SetPrinter will ONLY affect the system-wide printer  --
        '      -- the changes will NOT affect the VB printer object.
        '      Therefore, it may be necessary to reset the printer object's parameters to
        '      those chosen in the devmode.
        Dim p As Printer
        For Each p In Printers
            If p.DeviceName = PrinterName Then
                Set Printer = p
                Exit For
            End If
        Next p
        Printer.Duplex = MyDevMode.dmDuplex
    End Sub
      

  3.   

    2>ModPrint_Set类:
    Public Const HWND_BROADCAST = &HFFFF
    Public Const WM_WININICHANGE = &H1A' constants for DEVMODE structure
    Public Const CCHDEVICENAME = 32
    Public Const CCHFORMNAME = 32' constants for DesiredAccess member of PRINTER_DEFAULTS
    Public Const STANDARD_RIGHTS_REQUIRED = &HF0000
    Public Const PRINTER_ACCESS_ADMINISTER = &H4
    Public Const PRINTER_ACCESS_USE = &H8
    Public Const PRINTER_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED Or _
    PRINTER_ACCESS_ADMINISTER Or PRINTER_ACCESS_USE)' constant that goes into PRINTER_INFO_5 Attributes member
    ' to set it as default
    Public Const PRINTER_ATTRIBUTE_DEFAULT = 4' Constant for OSVERSIONINFO.dwPlatformId
    Public Const VER_PLATFORM_WIN32_WINDOWS = 1Public Type OSVERSIONINFO
        dwOSVersionInfoSize As Long
        dwMajorVersion As Long
        dwMinorVersion As Long
        dwBuildNumber As Long
        dwPlatformId As Long
        szCSDVersion As String * 128
    End TypePublic Type DEVMODE
         dmDeviceName As String * CCHDEVICENAME
         dmSpecVersion As Integer
         dmDriverVersion As Integer
         dmSize As Integer
         dmDriverExtra As Integer
         dmFields As Long
         dmOrientation As Integer
         dmPaperSize As Integer
         dmPaperLength As Integer
         dmPaperWidth As Integer
         dmScale As Integer
         dmCopies As Integer
         dmDefaultSource As Integer
         dmPrintQuality As Integer
         dmColor As Integer
         dmDuplex As Integer
         dmYResolution As Integer
         dmTTOption As Integer
         dmCollate As Integer
         dmFormName As String * CCHFORMNAME
         dmLogPixels As Integer
         dmBitsPerPel As Long
         dmPelsWidth As Long
         dmPelsHeight As Long
         dmDisplayFlags As Long
         dmDisplayFrequency As Long
         dmICMMethod As Long        ' // Windows 95 only
         dmICMIntent As Long        ' // Windows 95 only
         dmMediaType As Long        ' // Windows 95 only
         dmDitherType As Long       ' // Windows 95 only
         dmReserved1 As Long        ' // Windows 95 only
         dmReserved2 As Long        ' // Windows 95 only
    End TypePublic Type PRINTER_INFO_5
         pPrinterName As String
         pPortName As String
         Attributes As Long
         DeviceNotSelectedTimeout As Long
         TransmissionRetryTimeout As Long
    End TypePublic Type PRINTER_DEFAULTS
         pDatatype As Long
         pDevMode As Long
         DesiredAccess As Long
    End TypeDeclare Function GetProfileString Lib "kernel32" _
    Alias "GetProfileStringA" _
    (ByVal lpAppName As String, _
    ByVal lpKeyName As String, _
    ByVal lpDefault As String, _
    ByVal lpReturnedString As String, _
    ByVal nSize As Long) As LongDeclare Function WriteProfileString Lib "kernel32" _
    Alias "WriteProfileStringA" _
    (ByVal lpszSection As String, _
    ByVal lpszKeyName As String, _
    ByVal lpszString As String) As LongDeclare Function SendMessage Lib "user32" _
    Alias "SendMessageA" _
    (ByVal hwnd As Long, _
    ByVal wMsg As Long, _
    ByVal wParam As Long, _
    lparam As String) As LongDeclare Function GetVersionExA Lib "kernel32" _
    (lpVersionInformation As OSVERSIONINFO) As IntegerPublic Declare Function OpenPrinter Lib "winspool.drv" _
    Alias "OpenPrinterA" _
    (ByVal pPrinterName As String, _
    phPrinter As Long, _
    pDefault As PRINTER_DEFAULTS) As LongPublic Declare Function SetPrinter Lib "winspool.drv" _
    Alias "SetPrinterA" _
    (ByVal hPrinter As Long, _
    ByVal Level As Long, _
    pPrinter As Any, _
    ByVal Command As Long) As LongPublic Declare Function GetPrinter Lib "winspool.drv" _
    Alias "GetPrinterA" _
    (ByVal hPrinter As Long, _
    ByVal Level As Long, _
    pPrinter As Any, _
    ByVal cbBuf As Long, _
    pcbNeeded As Long) As LongPublic Declare Function lstrcpy Lib "kernel32" _
    Alias "lstrcpyA" _
    (ByVal lpString1 As String, _
    ByVal lpString2 As Any) As LongPublic Declare Function ClosePrinter Lib "winspool.drv" _
    (ByVal hPrinter As Long) As Long
    '---------------------------------------------------------选择打印机
        Public Sub SelectPrinter(NewPrinter As String)
            Dim Prt As Printer
            
            For Each Prt In Printers
                If Prt.DeviceName = NewPrinter Then
                    Set Printer = Prt
                Exit For
                End If
            Next
        End Sub
      

  4.   

    对呀,用水晶报表就好多了!
    不好意思,因为CSDN最多只让连续发三次帖子,所以还没有说具体的调用方法:
    老兄:不要怕麻烦,很简单的:你只要把以上两个类添加到你的工程中就OK了,也不要管看懂,还是看不懂!!说实话,我到现在还不完全懂呢!!!!(哈哈!)接下来,就是我的调用打印的一个按钮下的单击事件:(注意:还要加上一点:你必须在你的打印窗体上添加上一个listBox控件,这用来,列出你的机器 上的所有按装的打印机。)**********************************************************************代码在下面:Private Sub cmdPrint_Click()
        '----------------------------------------------------------------------------默认打印机设置
        Dim osinfo As OSVERSIONINFO
        Dim retvalue As Integer
        osinfo.dwOSVersionInfoSize = 148
        osinfo.szCSDVersion = Space$(128)
        retvalue = GetVersionExA(osinfo)    If MsgBox("你确定已经把打印机的纸张更换了吗?", vbYesNo + vbExclamation, "警告") = vbNo Then
            Exit Sub
        End If
        '---------------------------------------------------------------------------设置纸张走向并打印
        Dim obj As pageset.PrinterControl
        On Error GoTo errorhandler:
            Set obj = New pageset.PrinterControl
            obj.ChngOrientationPortrait
            Dim i As Integer
            For i = 0 To List1.ListCount - 1
                If List1.List(i) = "打印报停单" Then
                    List1.ListIndex = i
                End If
            Next i
            If osinfo.dwPlatformId = VER_PLATFORM_WIN32_WINDOWS Then
                Call Win95SetDefaultPrinter
            Else
            ' This assumes that future versions of Windows use the NT method
                Call WinNTSetDefaultPrinter
            End If
            STOP_RptSQL = "select autoid,a.mid,Tracffic_Card,AddToll_card1,AddToll_card2,Runing_card1,Runing_card2,car_card1," & _
                    "car_card2,RoadStop_form,Stopdate_b,Stopdate_e,Maker,Make_Date,ZS_com,mcar_code,driver_name,car_name,car_kind " & _
                    " from yz_stopinfo a inner join yz_carinfo b on a.mid=b.mid where autoid= '" & Trim(txt_AutoCode) & "'"
            Rpt_Stop.Show
            Rpt_Stop.PrintReport
            CmdPrint.Enabled = False
            Exit Sub
    errorhandler:
              MsgBox Err.Description
              obj.ReSetOrientation
        
    End Sub
      

  5.   

    最后,建议老兄以后做报表最好转到crystal report 或 active report!我现在就是用crystal report做报表! 而且,VB6自带的那个报表以后就从这个世界上消失了!
    据听说,MS以后要推出一款非常值得期待的报表设计器!
    祝:老兄好运,能解决当前问题!