Results 1 to 2 of 2

Thread: Horizontal Scrollbar

  1. #1

    Thread Starter
    Learning .Net danasegarane's Avatar
    Join Date
    Aug 2004
    Location
    VBForums
    Posts
    5,853

    Horizontal Scrollbar

    Dear All,
    How to add horizontal scrollbar to FileListbox
    Dana
    Please mark you thread resolved using the Thread Tools as shown

  2. #2
    PoorPoster iPrank's Avatar
    Join Date
    Oct 2005
    Location
    In a black hole
    Posts
    2,728

    Re: Horizontal Scrollbar

    Use a listbox instead.
    vb Code:
    1. Option Explicit
    2.  
    3. Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" ( _
    4.     ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
    5.    
    6. Private Const LB_DIR = &H18D
    7. Private Const DDL_ARCHIVE = &H20
    8. Private Const DDL_EXCLUSIVE = &H8000
    9. Private Const LB_SETHORIZONTALEXTENT = &H194
    10.  
    11. Private Sub Command1_Click()
    12.     List1.Clear
    13.     SendMessage List1.hwnd, LB_DIR, DDL_EXCLUSIVE Or DDL_ARCHIVE, ByVal "C:\Windows\*.*"
    14.     SetListboxScrollbar
    15. End Sub
    16.  
    17. Private Sub SetListboxScrollbar()
    18. Dim i As Integer
    19. Dim new_len As Long
    20. Dim max_len As Long
    21.  
    22.     For i = 0 To List1.ListCount - 1
    23.         new_len = 10 + ScaleX(TextWidth(List1.List(i)), Me.ScaleMode, vbPixels)
    24.         If max_len < new_len Then max_len = new_len
    25.     Next i
    26.  
    27.     SendMessage List1.hwnd, LB_SETHORIZONTALEXTENT, max_len, 0
    28. End Sub
    Combining these codes:
    http://www.vbforums.com/showpost.php...3&postcount=11
    http://vb-helper.com/howto_listbox_h...scrollbar.html
    Usefull VBF Threads/Posts I Found . My flickr page .
    "I love being married. It's so great to find that one special person you want to annoy for the rest of your life." - Rita Rudner


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