Thema
:
Delphi
Listbox Scrollbar wegmachen?
Einzelnen Beitrag anzeigen
APP
Registriert seit: 24. Feb 2003
Ort: Graz (A)
705 Beiträge
Delphi 7 Enterprise
#
4
19. Mai 2003, 17:34
Eigene Kompo ableiten:
zusammenfalten
·
markieren
Delphi-Quellcode:
type
TNoVScrolllistbox =
Class
( TListBox )
private
procedure
WMNCCalcSize(
var
msg: TMessage );
message
WM_NCCALCSIZE;
end
;
procedure
TNoVScrolllistbox.WMNCCalcSize(
var
msg: TMessage);
var
style: Integer;
begin
style := GetWindowLong(
handle
, GWL_STYLE );
if
(style
and
WS_VSCROLL) <> 0
then
SetWindowLong(
handle
, GWL_STYLE, style
and
not
WS_VSCROLL );
inherited
;
end
;
Quelle:
How to remove the scrollbar of a TListBox
Armin P. Pressler
BEGIN
...
real programmers are using C/C++ - smart developers Delphi;
END;
Zitat
APP
Öffentliches Profil ansehen
Besuche die Homepage von APP!
Mehr Beiträge von APP finden