mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 09:39:31 +02:00
Keith: Fixed form size for listviewtest.pp, kind changing for scrollbar.pp
git-svn-id: trunk@678 -
This commit is contained in:
parent
0f315a6dbc
commit
284d6555a1
@ -44,8 +44,8 @@ begin
|
||||
inherited Create(AOwner);
|
||||
|
||||
Caption := 'List View Test';
|
||||
Width := 200;
|
||||
Height := 300;
|
||||
Width := 175;
|
||||
Height := 195;
|
||||
|
||||
ListView := TListView.Create(Self);
|
||||
ListView.Parent := Self;
|
||||
@ -86,6 +86,9 @@ end.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.2 2002/02/08 00:44:06 lazarus
|
||||
Keith: Fixed form size for listviewtest.pp, kind changing for scrollbar.pp
|
||||
|
||||
Revision 1.1 2002/02/04 10:54:33 lazarus
|
||||
Keith:
|
||||
* Fixes for Win32
|
||||
|
@ -121,11 +121,11 @@ End;
|
||||
|
||||
Procedure TForm1.Button1Clicked(sender : tobject);
|
||||
Begin
|
||||
{Writeln('[Button1cvlikced]');
|
||||
Writeln('[Button1cvlikced]');
|
||||
if ScrollBar1.Kind = sbHorizontal then
|
||||
Scrollbar1.Kind := sbVertical else
|
||||
Scrollbar1.kind := sbHorizontal;
|
||||
}
|
||||
|
||||
end;
|
||||
|
||||
Procedure TForm1.Button2Clicked(sender : tobject);
|
||||
|
Loading…
Reference in New Issue
Block a user