source: branches/ByteArray/Utils.pas

Last change on this file was 11, checked in by chronos, 2 months ago
  • Modified: Updated Common package.
  • Fixed: Wrong return address from CALL instruction.
File size: 299 bytes
Line 
1unit Utils;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls;
7
8procedure DockForm(Form: TForm; DockSite: TWinControl);
9
10
11implementation
12
13procedure DockForm(Form: TForm; DockSite: TWinControl);
14begin
15 Form.ManualDock(DockSite, nil, alClient);
16 Form.Align := alClient;
17 Form.Show;
18end;
19
20end.
21
Note: See TracBrowser for help on using the repository browser.