Articles   Members Online: 3
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to detect if a TreeView has a scrollbar and how to change its position Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
16-Apr-03
Category
VCL-General
Language
Delphi 5.x
Views
157
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Maarten de Haan

How to detect if a TreeView has a scrollbar?
How to change the scrollbar in a TreeView (if it has one)?

Answer:
1   
2   procedure TForm1.FormMouseWheelDown(Sender: TObject;
3     Shift: TShiftState;
4     MousePos: TPoint;
5     var Handled: Boolean);
6   
7   var
8     iMin, iMax: Integer;
9     bTreeViewVertScrollBarVisible: Boolean;
10  
11  begin
12    bTreeViewVertScrollBarVisible := True;
13    GetScrollRange(Form1.TreeView1.Handle, SB_VERT, iMin, iMax);
14    if iMin = iMax then
15      bTreeViewVertScrollBarVisible := False; // No scrollbar visible
16  
17    if bTreeViewVertScrollBarVisible then
18    begin
19      iPos := GetScrollPos(Form1.TreeView1.Handle, SB_VERT);
20      SetScrollPos(Form1.TreeView1.Handle, SB_VERT, iPos + 1, True);
21      // Don't set Handled to True!
22      // If you do that then ONLY the scrollbar changes but NOT the
23      // content of the TreeView!
24    end;
25  
26  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC