Results 1 to 18 of 18

Thread: I have listview with icon

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    I have listview with icon

    Hi

    I have listview with icon, all icons come in the first column from the right.

    If can programmer this code i will pay 50$.

    Name:  p_6315ygry1.jpg
Views: 203
Size:  35.7 KB

    This Example: How to move all icons to right side and when i print must be all icons in right side.

    https://we.tl/kgZtEJ3IB0
    Last edited by coldlove; Sep 23rd, 2017 at 07:08 AM.

  2. #2
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    5,708

    Re: I have listview with icon

    Not sure what you're even talking about; do you just mean placing an icon in a subitem? If you're using v6 controls there a picture property for the ListSubItem, for v5 or API ListView you have to set it via API but there's dozens of examples of this, no need to pay someone. Just search for LVS_EX_SUBITEMIMAGES

  3. #3
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: I have listview with icon

    just change the order of the columnheaders
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: I have listview with icon

    This Example: How to move all icons to right side and when i print must be all icons in right side.

    https://we.tl/kgZtEJ3IB0

  5. #5
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: I have listview with icon

    try like
    Code:
    Me.lvwSample.ColumnHeaders(1).Position = 12
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  6. #6

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: I have listview with icon

    Hi westconn1

    Thank you

    But when i print must be all icons in right side.

  7. #7
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: I have listview with icon

    Name:  clipic.jpg
Views: 143
Size:  34.6 KB
    remove the text from the listview item and place into the first subitem, adjust column widths if required
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  8. #8

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: I have listview with icon

    Hi westconn1,

    Can you please put it the code.

  9. #9

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: I have listview with icon

    Please i need it's very important.

  10. #10
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: I have listview with icon

    the above image was produced, just using the line of code in post #5

    i added
    Code:
        lvwSample.ColumnHeaders(1).Width = 400
        lvwSample.ColumnHeaders(1).Position = 12
        For Each h In lvwSample.ColumnHeaders
            w = w + h.Width
        Next
        lvwSample.ColumnHeaders(1).Text = ""
        lvwSample.Width = w + 100
        Me.Width = lvwSample.Width + 500
    to improve the display of the listviewName:  clipic.jpg
Views: 134
Size:  28.8 KB
    Last edited by westconn1; Sep 23rd, 2017 at 06:15 PM.
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  11. #11

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: I have listview with icon

    Hi westconn1

    When i print it's still come in the left side.

  12. #12
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: I have listview with icon

    what is the code you are using for printing?
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  13. #13

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: I have listview with icon

    Code:
    gPrintListView lvwSample, ""

  14. #14
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: I have listview with icon

    well i can really see why it is printing in that form, from the code you have posted


    surely you would realize that to remedy any problem we would need to know what gprintlistview is, a class? a module procedure? an external program?
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  15. #15

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: I have listview with icon

    Can you please send the source file if you correct it.

  16. #16
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: I have listview with icon

    here is a way to print an image of your listview

    add this to a module
    Code:
    '--------------------------------------------------------------------
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          ' Visual Basic 4.0 16/32 Capture Routines
          '
          ' This module contains several routines for capturing windows into a
          ' picture.  All the routines work on both 16 and 32 bit Windows
          ' platforms.
          ' The routines also have palette support.
          '
          ' CreateBitmapPicture - Creates a picture object from a bitmap and
          ' palette.
          ' CaptureWindow - Captures any window given a window handle.
          ' CaptureActiveWindow - Captures the active window on the desktop.
          ' CaptureForm - Captures the entire form.
          ' CaptureClient - Captures the client area of a form.
          ' CaptureScreen - Captures the entire screen.
          ' PrintPictureToFitPage - prints any picture as big as possible on
          ' the page.
          '
          ' NOTES
          '    - No error trapping is included in these routines.
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          Option Explicit
          Option Base 0
    
          Private Type PALETTEENTRY
             peRed As Byte
             peGreen As Byte
             peBlue As Byte
             peFlags As Byte
          End Type
    
          Private Type LOGPALETTE
             palVersion As Integer
             palNumEntries As Integer
             palPalEntry(255) As PALETTEENTRY  ' Enough for 256 colors.
          End Type
    
          Private Type GUID
             Data1 As Long
             Data2 As Integer
             Data3 As Integer
             Data4(7) As Byte
          End Type
    
          #If Win32 Then
    
             Private Const RASTERCAPS As Long = 38
             Private Const RC_PALETTE As Long = &H100
             Private Const SIZEPALETTE As Long = 104
    
             Private Type RECT
                Left As Long
                Top As Long
                Right As Long
                Bottom As Long
             End Type
    
             Private Declare Function CreateCompatibleDC Lib "GDI32" ( _
                ByVal hDC As Long) As Long
             Private Declare Function CreateCompatibleBitmap Lib "GDI32" ( _
                ByVal hDC As Long, ByVal nWidth As Long, _
                ByVal nHeight As Long) As Long
             Private Declare Function GetDeviceCaps Lib "GDI32" ( _
                ByVal hDC As Long, ByVal iCapabilitiy As Long) As Long
             Private Declare Function GetSystemPaletteEntries Lib "GDI32" ( _
                ByVal hDC As Long, ByVal wStartIndex As Long, _
                ByVal wNumEntries As Long, lpPaletteEntries As PALETTEENTRY) _
                As Long
             Private Declare Function CreatePalette Lib "GDI32" ( _
                lpLogPalette As LOGPALETTE) As Long
             Private Declare Function SelectObject Lib "GDI32" ( _
                ByVal hDC As Long, ByVal hObject As Long) As Long
             Private Declare Function BitBlt Lib "GDI32" ( _
                ByVal hDCDest As Long, ByVal XDest As Long, _
                ByVal YDest As Long, ByVal nWidth As Long, _
                ByVal nHeight As Long, ByVal hDCSrc As Long, _
                ByVal XSrc As Long, ByVal YSrc As Long, ByVal dwRop As Long) _
                As Long
             Private Declare Function DeleteDC Lib "GDI32" ( _
                ByVal hDC As Long) As Long
             Private Declare Function GetForegroundWindow Lib "USER32" () _
                As Long
             Private Declare Function SelectPalette Lib "GDI32" ( _
                ByVal hDC As Long, ByVal hPalette As Long, _
                ByVal bForceBackground As Long) As Long
             Private Declare Function RealizePalette Lib "GDI32" ( _
                ByVal hDC As Long) As Long
             Private Declare Function GetWindowDC Lib "USER32" ( _
                ByVal hWnd As Long) As Long
             Private Declare Function GetDC Lib "USER32" ( _
                ByVal hWnd As Long) As Long
             Private Declare Function GetWindowRect Lib "USER32" ( _
                ByVal hWnd As Long, lpRect As RECT) As Long
             Private Declare Function ReleaseDC Lib "USER32" ( _
                ByVal hWnd As Long, ByVal hDC As Long) As Long
             Private Declare Function GetDesktopWindow Lib "USER32" () As Long
    
             Private Type PicBmp
                Size As Long
                Type As Long
                hBmp As Long
                hPal As Long
                Reserved As Long
             End Type
    
             Private Declare Function OleCreatePictureIndirect _
                Lib "olepro32.dll" (PicDesc As PicBmp, RefIID As GUID, _
                ByVal fPictureOwnsHandle As Long, IPic As IPicture) As Long
    
          #ElseIf Win16 Then
    
             Private Const RASTERCAPS As Integer = 38
             Private Const RC_PALETTE As Integer = &H100
             Private Const SIZEPALETTE As Integer = 104
    
             Private Type RECT
                Left As Integer
                Top As Integer
                Right As Integer
                Bottom As Integer
             End Type
    
             Private Declare Function CreateCompatibleDC Lib "GDI" ( _
                ByVal hDC As Integer) As Integer
             Private Declare Function CreateCompatibleBitmap Lib "GDI" ( _
                ByVal hDC As Integer, ByVal nWidth As Integer, _
                ByVal nHeight As Integer) As Integer
             Private Declare Function GetDeviceCaps Lib "GDI" ( _
                ByVal hDC As Integer, ByVal iCapabilitiy As Integer) As Integer
             Private Declare Function GetSystemPaletteEntries Lib "GDI" ( _
                ByVal hDC As Integer, ByVal wStartIndex As Integer, _
                ByVal wNumEntries As Integer, _
                lpPaletteEntries As PALETTEENTRY) As Integer
             Private Declare Function CreatePalette Lib "GDI" ( _
                lpLogPalette As LOGPALETTE) As Integer
             Private Declare Function SelectObject Lib "GDI" ( _
                ByVal hDC As Integer, ByVal hObject As Integer) As Integer
             Private Declare Function BitBlt Lib "GDI" ( _
                ByVal hDCDest As Integer, ByVal XDest As Integer, _
                ByVal YDest As Integer, ByVal nWidth As Integer, _
                ByVal nHeight As Integer, ByVal hDCSrc As Integer, _
                ByVal XSrc As Integer, ByVal YSrc As Integer, _
                ByVal dwRop As Long) As Integer
             Private Declare Function DeleteDC Lib "GDI" ( _
                ByVal hDC As Integer) As Integer
             Private Declare Function GetForegroundWindow Lib "USER" _
                Alias "GetActiveWindow" () As Integer
             Private Declare Function SelectPalette Lib "USER" ( _
                ByVal hDC As Integer, ByVal hPalette As Integer, ByVal _
                bForceBackground As Integer) As Integer
             Private Declare Function RealizePalette Lib "USER" ( _
                ByVal hDC As Integer) As Integer
             Private Declare Function GetWindowDC Lib "USER" ( _
                ByVal hWnd As Integer) As Integer
             Private Declare Function GetDC Lib "USER" ( _
                ByVal hWnd As Integer) As Integer
             Private Declare Function GetWindowRect Lib "USER" ( _
                ByVal hWnd As Integer, lpRect As RECT) As Integer
             Private Declare Function ReleaseDC Lib "USER" ( _
                ByVal hWnd As Integer, ByVal hDC As Integer) As Integer
             Private Declare Function GetDesktopWindow Lib "USER" () As Integer
    
             Private Type PicBmp
                Size As Integer
                Type As Integer
                hBmp As Integer
                hPal As Integer
                Reserved As Integer
             End Type
    
             Private Declare Function OleCreatePictureIndirect _
                Lib "oc25.dll" (PictDesc As PicBmp, RefIID As GUID, _
                ByVal fPictureOwnsHandle As Integer, IPic As IPicture) _
                As Integer
    
          #End If
    
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          ' CreateBitmapPicture
          '    - Creates a bitmap type Picture object from a bitmap and
          '      palette.
          '
          ' hBmp
          '    - Handle to a bitmap.
          '
          ' hPal
          '    - Handle to a Palette.
          '    - Can be null if the bitmap doesn't use a palette.
          '
          ' Returns
          '    - Returns a Picture object containing the bitmap.
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          #If Win32 Then
             Public Function CreateBitmapPicture(ByVal hBmp As Long, _
                ByVal hPal As Long) As Picture
    
                Dim r As Long
          #ElseIf Win16 Then
             Public Function CreateBitmapPicture(ByVal hBmp As Integer, _
                ByVal hPal As Integer) As Picture
    
                Dim r As Integer
          #End If
             Dim Pic As PicBmp
             ' IPicture requires a reference to "Standard OLE Types."
             Dim IPic As IPicture
             Dim IID_IDispatch As GUID
    
             ' Fill in with IDispatch Interface ID.
             With IID_IDispatch
                .Data1 = &H20400
                .Data4(0) = &HC0
                .Data4(7) = &H46
             End With
    
             ' Fill Pic with necessary parts.
             With Pic
                .Size = Len(Pic)          ' Length of structure.
                .Type = vbPicTypeBitmap   ' Type of Picture (bitmap).
                .hBmp = hBmp              ' Handle to bitmap.
                .hPal = hPal              ' Handle to palette (may be null).
             End With
    
             ' Create Picture object.
             r = OleCreatePictureIndirect(Pic, IID_IDispatch, 1, IPic)
    
             ' Return the new Picture object.
             Set CreateBitmapPicture = IPic
          End Function
    
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          ' CaptureWindow
          '    - Captures any portion of a window.
          '
          ' hWndSrc
          '    - Handle to the window to be captured.
          '
          ' Client
          '    - If True CaptureWindow captures from the client area of the
          '      window.
          '    - If False CaptureWindow captures from the entire window.
          '
          ' LeftSrc, TopSrc, WidthSrc, HeightSrc
          '    - Specify the portion of the window to capture.
          '    - Dimensions need to be specified in pixels.
          '
          ' Returns
          '    - Returns a Picture object containing a bitmap of the specified
          '      portion of the window that was captured.
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          ''''''
          '
          #If Win32 Then
             Public Function CaptureWindow(ByVal hWndSrc As Long, _
                ByVal Client As Boolean, ByVal LeftSrc As Long, _
                ByVal TopSrc As Long, ByVal WidthSrc As Long, _
                ByVal HeightSrc As Long) As Picture
    
                Dim hDCMemory As Long
                Dim hBmp As Long
                Dim hBmpPrev As Long
                Dim r As Long
                Dim hDCSrc As Long
                Dim hPal As Long
                Dim hPalPrev As Long
                Dim RasterCapsScrn As Long
                Dim HasPaletteScrn As Long
                Dim PaletteSizeScrn As Long
          #ElseIf Win16 Then
             Public Function CaptureWindow(ByVal hWndSrc As Integer, _
                ByVal Client As Boolean, ByVal LeftSrc As Integer, _
                ByVal TopSrc As Integer, ByVal WidthSrc As Long, _
                ByVal HeightSrc As Long) As Picture
    
                Dim hDCMemory As Integer
                Dim hBmp As Integer
                Dim hBmpPrev As Integer
                Dim r As Integer
                Dim hDCSrc As Integer
                Dim hPal As Integer
                Dim hPalPrev As Integer
                Dim RasterCapsScrn As Integer
                Dim HasPaletteScrn As Integer
                Dim PaletteSizeScrn As Integer
          #End If
             Dim LogPal As LOGPALETTE
    
             ' Depending on the value of Client get the proper device context.
             If Client Then
                hDCSrc = GetDC(hWndSrc) ' Get device context for client area.
             Else
                hDCSrc = GetWindowDC(hWndSrc) ' Get device context for entire
                                              ' window.
             End If
    
             ' Create a memory device context for the copy process.
             hDCMemory = CreateCompatibleDC(hDCSrc)
             ' Create a bitmap and place it in the memory DC.
             hBmp = CreateCompatibleBitmap(hDCSrc, WidthSrc, HeightSrc)
             hBmpPrev = SelectObject(hDCMemory, hBmp)
    
             ' Get screen properties.
             RasterCapsScrn = GetDeviceCaps(hDCSrc, RASTERCAPS) ' Raster
                                                                ' capabilities.
             HasPaletteScrn = RasterCapsScrn And RC_PALETTE       ' Palette
                                                                  ' support.
             PaletteSizeScrn = GetDeviceCaps(hDCSrc, SIZEPALETTE) ' Size of
                                                                  ' palette.
    
             ' If the screen has a palette make a copy and realize it.
             If HasPaletteScrn And (PaletteSizeScrn = 256) Then
                ' Create a copy of the system palette.
                LogPal.palVersion = &H300
                LogPal.palNumEntries = 256
                r = GetSystemPaletteEntries(hDCSrc, 0, 256, _
                    LogPal.palPalEntry(0))
                hPal = CreatePalette(LogPal)
                ' Select the new palette into the memory DC and realize it.
                hPalPrev = SelectPalette(hDCMemory, hPal, 0)
                r = RealizePalette(hDCMemory)
             End If
    
             ' Copy the on-screen image into the memory DC.
             r = BitBlt(hDCMemory, 0, 0, WidthSrc, HeightSrc, hDCSrc, _
                LeftSrc, TopSrc, vbSrcCopy)
    
          ' Remove the new copy of the  on-screen image.
             hBmp = SelectObject(hDCMemory, hBmpPrev)
    
             ' If the screen has a palette get back the palette that was
             ' selected in previously.
             If HasPaletteScrn And (PaletteSizeScrn = 256) Then
                hPal = SelectPalette(hDCMemory, hPalPrev, 0)
             End If
    
             ' Release the device context resources back to the system.
             r = DeleteDC(hDCMemory)
             r = ReleaseDC(hWndSrc, hDCSrc)
    
             ' Call CreateBitmapPicture to create a picture object from the
             ' bitmap and palette handles. Then return the resulting picture
             ' object.
             Set CaptureWindow = CreateBitmapPicture(hBmp, hPal)
          End Function
    
    
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          ' CaptureClient
          '    - Captures the client area of a form.
          '
          ' frmSrc
          '    - The Form object to capture.
          '
          ' Returns
          '    - Returns a Picture object containing a bitmap of the form's
          '      client area.
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          Public Function CaptureClient(frmSrc As Form) As Picture
             ' Call CaptureWindow to capture the client area of the form given
             ' its window handle and return the resulting Picture object.
             Set CaptureClient = CaptureWindow(frmSrc.hWnd, True, 0, 0, _
                frmSrc.ScaleX(frmSrc.ScaleWidth, frmSrc.ScaleMode, vbPixels), _
                frmSrc.ScaleY(frmSrc.ScaleHeight, frmSrc.ScaleMode, vbPixels))
          End Function
    
    
    
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          ' PrintPictureToFitPage
          '    - Prints a Picture object as big as possible.
          '
          ' Prn
          '    - Destination Printer object.
          '
          ' Pic
          '    - Source Picture object.
          '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
          '
          Public Sub PrintPictureToFitPage(Prn As Printer, Pic As Picture)
             Const vbHiMetric As Integer = 8
             Dim PicRatio As Double
             Dim PrnWidth As Double
             Dim PrnHeight As Double
             Dim PrnRatio As Double
             Dim PrnPicWidth As Double
             Dim PrnPicHeight As Double
    
             ' Determine if picture should be printed in landscape or portrait
             ' and set the orientation.
             If Pic.Height >= Pic.Width Then
                Prn.Orientation = vbPRORPortrait   ' Taller than wide.
             Else
                Prn.Orientation = vbPRORLandscape  ' Wider than tall.
             End If
    
             ' Calculate device independent Width-to-Height ratio for picture.
             PicRatio = Pic.Width / Pic.Height
    
             ' Calculate the dimentions of the printable area in HiMetric.
             PrnWidth = Prn.ScaleX(Prn.ScaleWidth, Prn.ScaleMode, vbHiMetric)
             PrnHeight = Prn.ScaleY(Prn.ScaleHeight, Prn.ScaleMode, vbHiMetric)
             ' Calculate device independent Width to Height ratio for printer.
             PrnRatio = PrnWidth / PrnHeight
    
             ' Scale the output to the printable area.
             If PicRatio >= PrnRatio Then
                ' Scale picture to fit full width of printable area.
                PrnPicWidth = Prn.ScaleX(PrnWidth, vbHiMetric, Prn.ScaleMode)
                PrnPicHeight = Prn.ScaleY(PrnWidth / PicRatio, vbHiMetric, _
                   Prn.ScaleMode)
             Else
                ' Scale picture to fit full height of printable area.
                PrnPicHeight = Prn.ScaleY(PrnHeight, vbHiMetric, Prn.ScaleMode)
                PrnPicWidth = Prn.ScaleX(PrnHeight * PicRatio, vbHiMetric, _
                   Prn.ScaleMode)
             End If
    
             ' Print the picture using the PaintPicture method.
             Dim cen As Long
             cen = (Prn.Height - PrnPicHeight) / 2
             Prn.PaintPicture Pic, 0, cen, PrnPicWidth, PrnPicHeight
          End Sub
          '--------------------------------------------------------------------
    in your print button
    Code:
    Private Sub cmdPrint_Click()
    Dim h As Long, w As Long, t As Long, l As Long
    With lvwSample
        h = Me.Height
        w = Me.Width
        Me.Height = .Height + 700
        Me.Width = .Width + 250
    End With
    DoEvents
    
            Set Picture1.Picture = CaptureClient(Me)
            Printer.PaperSize = vbPRPSA4
            PrintPictureToFitPage Printer, Picture1.Picture
            Printer.EndDoc
        Me.Width = w
        Me.Height = h
    '    gPrintListView lvwSample, "Data"
    
    End Sub
    i cut the module out of an existing project, so it has a lot of stuff you do not need, but will not hurt anything, i do not know now where the module came from originally, possibly a microsoft example, i have tested the code with my pdf printer driver

    NOTE as this is an image, it is necessary that the entire listview is visible on screen

    i may revisit the listview print module another day, i had it close, but it was a bit tricky
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  17. #17
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: I have listview with icon

    i did get the module code to work, though not as i would have liked, i am only posting the part where i made some changes, you should be able to figure where it starts and finishes, backup first, or just comment out the original rather than delete
    Code:
        '--------------------------------------------------------------------------
        'Print column headers with slight 3D effect
        '--------------------------------------------------------------------------
        
        For Each objCol In pobjListView.ColumnHeaders
            lngX = pobjListView.ColumnHeaders(objCol.Position).Left + 200
            lngX1 = lngX + (objCol.Width * dblXScale)
            If objCol.Index = 1 Then lngX1 = lngX + 400
            Debug.Print lngX, lngX1, objCol.Index, objCol.Position
            
            Printer.Line (lngX, lngY)-(lngX1, lngY1), vbButtonShadow, BF
            Printer.Line (lngX, lngY)-(lngX1 - px, lngY1), RGB(245, 245, 245), BF
            Printer.Line (lngX + px, lngY + py)-(lngX1, lngY1), vbButtonShadow, BF
            Printer.Line (lngX + px, lngY + py)-(lngX1 - px, lngY1 - py), vbButtonFace, BF
            
            Printer.CurrentY = lngY + ((intRowHeight - Printer.TextHeight(objCol.Text)) / 2) + py
            
            Select Case objCol.Alignment
                   
                Case ListColumnAlignmentConstants.lvwColumnCenter
                       
                    Printer.CurrentX = lngX + (((objCol.Width * dblXScale) - Printer.TextWidth(objCol.Text)) / 2)
                   
                Case ListColumnAlignmentConstants.lvwColumnLeft
                    
                    Printer.CurrentX = lngX + (px * 5)
                
                Case ListColumnAlignmentConstants.lvwColumnRight
                    
                    Printer.CurrentX = lngX + ((objCol.Width * dblXScale) - Printer.TextWidth(objCol.Text)) - (px * 5)
                    
            End Select
            
            Printer.Print objCol.Text
               
            lngX = lngX1
        
        Next
        
        lngEnd = lngX1 + px
        
        Printer.Font.Bold = False
        
        '--------------------------------------------------------------------------
        'Print list item data
        '--------------------------------------------------------------------------
        
        For Each objLI In pobjListView.ListItems
        
            
            If lngY1 > lngEOP - intRowHeight - intRowHeight Then
                
                '------------------------------------------------------------------
                'Print page number
                '------------------------------------------------------------------
                
                lngPageNo = lngPageNo + 1
                Printer.CurrentX = (Printer.Width / 2) - (Printer.TextWidth("Page " & lngPageNo) / 2)
                Printer.CurrentY = lngEOP - intRowHeight
                Printer.Print "Page " & lngPageNo
                Printer.NewPage
                Printer.CurrentY = lngTop
                lngY = lngTop
            
            Else
            
                lngY = lngY + intRowHeight
            
            End If
            
            lngX = lngLeft
            
            lngY1 = lngY + intRowHeight
                
            For Each objCol In pobjListView.ColumnHeaders
                
                '------------------------------------------------------------------
                'Print the icon if on col 1
                '------------------------------------------------------------------
            lngX = pobjListView.ColumnHeaders(objCol.Position).Left + 200
            lngX1 = lngX + (objCol.Width * dblXScale)
            If objCol.Index = 1 Then lngX1 = lngX + 400
                If objCol.Index > 1 Then
                    
                    strText = objLI.SubItems(objCol.Index - 1)
                    
                    intOffset = 0
                    
                Else
                    
                    strText = objLI.Text
         
                    If IsEmpty(objLI.SmallIcon) Then
                        
                        intOffset = 0
                    
                    Else
                        
                        Set objPic = objILS.Overlay(objLI.SmallIcon, objLI.SmallIcon)
                    
                        Printer.PaintPicture objPic, lngX + px, lngY + (py / 2), 16 * px, 16 * py, , , , , vbSrcCopy
                        
                        intOffset = px * 16
                        
                    End If
                
                End If
                
                '------------------------------------------------------------------
                'Make sure text fits
                '------------------------------------------------------------------
                
                lngWidth = (objCol.Width * dblXScale)
                
                lngX1 = lngX + lngWidth
                If objCol.Index = 1 Then lngX1 = lngX + 400
                
                strTextTrun = strText
                
                Do Until Printer.TextWidth(strTextTrun) < lngWidth - (px * 5) - intOffset Or strText = ""
                    
                    strText = Left$(strText, Len(strText) - 1)
                    
                    strTextTrun = strText & "..."
                
                Loop
                
                Printer.Line (lngX, lngY)-(lngX1, lngY1), 1, B
                
                Printer.CurrentY = lngY + ((intRowHeight - Printer.TextHeight(strTextTrun)) / 2) + py
                
                Select Case objCol.Alignment
                       
                    Case ListColumnAlignmentConstants.lvwColumnCenter
                        
                        Printer.CurrentX = lngX + intOffset + (((objCol.Width * dblXScale) - Printer.TextWidth(strTextTrun)) / 2)
                        
                    Case ListColumnAlignmentConstants.lvwColumnLeft
                        
                        Printer.CurrentX = lngX + intOffset + (px * 5)
                    
                    Case ListColumnAlignmentConstants.lvwColumnRight
                        
                        Printer.CurrentX = lngX + ((objCol.Width * dblXScale) - intOffset - Printer.TextWidth(strTextTrun)) - (px * 5)
                        
                End Select
                
                '------------------------------------------------------------------
                'Print each colum
                '------------------------------------------------------------------
    this is also tested to my pdf printer driver
    Last edited by westconn1; Sep 24th, 2017 at 08:18 AM.
    i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
    Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next

    dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part

    come back and mark your original post as resolved if your problem is fixed
    pete

  18. #18

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: I have listview with icon

    Hi westconn1,

    This came as a picture, i don't want it as a picture.

    I want the same as in the example but the icons are on the right.

    Thanks

Posting Permissions

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



Click Here to Expand Forum to Full Width