Develop and Download Open Source Software

Browse Subversion Repository

Contents of /numberdg.pas

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download) (as text)
Mon Nov 7 12:03:00 2011 UTC (12 years, 4 months ago) by shiraishikazuo
File MIME type: text/x-pascal
File size: 667 byte(s)


1 unit numberdg;
2
3 {$IFDEF FPC}
4 {$MODE DELPHI}{$H+}
5 {$ENDIF}
6
7 (***************************************)
8 (* Copyright (C) 2003, SHIRAISHI Kazuo *)
9 (***************************************)
10
11
12 interface
13
14 uses SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
15 Buttons, ExtCtrls, LResources;
16
17 type
18
19 { TNumberDlg }
20
21 TNumberDlg = class(TForm)
22 Cancelbtn: TButton;
23 OKBtn: TButton;
24 Edit1: TEdit;
25 Edit2: TEdit;
26 Label1: TLabel;
27 Label2: TLabel;
28 private
29 { Private 宣言 }
30 public
31 { Public 宣言 }
32 end;
33
34 var
35 NumberDlg: TNumberDlg;
36
37 implementation
38 {$R *.lfm}
39
40
41 initialization
42
43
44
45 end.

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26