Articles   Members Online:
-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 create a borderless TComboBox 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-May-03
Category
VCL-General
Language
Delphi 2.x
Views
47
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Tomas Rutkauskas

Is it possible to create a flat or borderless combo box? If so, how would I go 
about it.

Answer:

1   { ... }
2   TNoBorderComboBox = class(TComboBox)
3   protected
4     procedure WMPaint(var Msg: TMessage); message WM_PAINT;
5   end;
6   
7   procedure TNoBorderComboBox.WMPaint(var Msg: TMessage);
8   var
9     C: TControlCanvas;
10    R: TRect;
11  begin
12    inherited;
13    C := TControlCanvas.Create;
14    try
15      C.Control := Self;
16      with C do
17      begin
18        Brush.Color := clBtnFace;
19        R := ClientRect;
20        FrameRect(R);
21        InflateRect(R, -1, -1);
22        FrameRect(R);
23      end;
24    finally
25      C.Free;
26    end;
27  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