Keith: Fixed form size for listviewtest.pp, kind changing for scrollbar.pp

git-svn-id: trunk@678 -
This commit is contained in:
lazarus 2002-02-08 00:44:06 +00:00
parent 0f315a6dbc
commit 284d6555a1
2 changed files with 7 additions and 4 deletions

View File

@ -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

View File

@ -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);