Browse CVS Repository
Contents of /gikonavigoeson/gikonavi/ListSelect.pas
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Sat Aug 9 13:51:06 2003 UTC
(20 years, 8 months ago)
by hi_
Branch point for: MAIN, hi
File MIME type: text/x-pascal
Initial revision
| 1 |
unit ListSelect; |
| 2 |
|
| 3 |
interface |
| 4 |
|
| 5 |
uses |
| 6 |
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, |
| 7 |
Dialogs, StdCtrls; |
| 8 |
|
| 9 |
type |
| 10 |
TListSelectDialog = class(TForm) |
| 11 |
TitleLabel: TLabel; |
| 12 |
SelectComboBox: TComboBox; |
| 13 |
KubetsuCheckBox: TCheckBox; |
| 14 |
OkButton: TButton; |
| 15 |
CancelButton: TButton; |
| 16 |
private |
| 17 |
{ Private éž } |
| 18 |
public |
| 19 |
{ Public éž } |
| 20 |
end; |
| 21 |
|
| 22 |
var |
| 23 |
ListSelectDialog: TListSelectDialog; |
| 24 |
|
| 25 |
implementation |
| 26 |
|
| 27 |
{$R *.dfm} |
| 28 |
|
| 29 |
end. |
|