| Revision: | 21 |
| Committed: | Sat Aug 26 19:11:49 2006 UTC (19 years, 2 months ago) by alloc |
| Content type: | text/x-pascal |
| File size: | 324 byte(s) |
| Log Message: |
| # | Content |
|---|---|
| 1 | unit Unit12_ValueEdit; |
| 2 | |
| 3 | interface |
| 4 | |
| 5 | uses |
| 6 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, |
| 7 | Dialogs; |
| 8 | |
| 9 | type |
| 10 | TForm12 = class(TForm) |
| 11 | private |
| 12 | { Private declarations } |
| 13 | public |
| 14 | { Public declarations } |
| 15 | end; |
| 16 | |
| 17 | var |
| 18 | Form12: TForm12; |
| 19 | |
| 20 | implementation |
| 21 | |
| 22 | {$R *.dfm} |
| 23 | |
| 24 | end. |