Registriert seit: 24. Feb 2003
Ort: Graz (A)
705 Beiträge
Delphi 7 Enterprise
|
Re: TListbox -> Scrollbar visible?
17. Dez 2004, 09:39
Hallo Jens,
an anderer Stelle habe ich einen Code zum Verstecken der Scrollbar gepostet,
mit
Delphi-Quellcode:
style := GetWindowLong( handle, GWL_STYLE );
if (style and WS_VSCROLL) <> 0 then
solltest Du die Abfrage machen können.
Armin P. Pressler
BEGIN
...real programmers are using C/C++ - smart developers Delphi;
END;
|