home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 August
/
Chip_1999-08_cd.bin
/
tema
/
Ozogan
/
RUNTIME
/
APLIKACE.EXE
/
BANKOMAT
/
PROGRAM
/
CODE03.KL3
< prev
next >
Wrap
Text File
|
1999-03-28
|
308b
|
14 lines
Program About;
procedure TForm.FormCreate(Sender: TObject);
begin
Form.Left:=(SysVarGet('fleft')+(SysVarGet('fwidth')/2 ))-(Form.Width/2);
Form.Top :=(SysVarGet('ftop') +(SysVarGet('fheight')/2))-(Form.Height/2);
If Form.Left<0 Then Begin
Form.Left:=0;Form.Top:=0;
End;
end;
end.