Browse Subversion Repository
Contents of /Unit3.pas
Parent Directory
| Revision Log
Revision 6 -
( show annotations)
( download)
( as text)
Mon Jul 20 13:11:27 2015 UTC
(8 years, 8 months ago)
by yamat0jp
File MIME type: text/x-pascal
File size: 380 byte(s)
| 1 |
unit Unit3; |
| 2 |
|
| 3 |
interface |
| 4 |
|
| 5 |
uses |
| 6 |
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, |
| 7 |
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls; |
| 8 |
|
| 9 |
type |
| 10 |
TForm3 = class(TForm) |
| 11 |
Image1: TImage; |
| 12 |
private |
| 13 |
{ Private éž } |
| 14 |
public |
| 15 |
{ Public éž } |
| 16 |
end; |
| 17 |
|
| 18 |
var |
| 19 |
Form3: TForm3; |
| 20 |
|
| 21 |
implementation |
| 22 |
|
| 23 |
{$R *.dfm} |
| 24 |
|
| 25 |
end. |
|