home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Australian Personal Computer 2000 October
/
tst.iso
/
programs
/
borland
/
RUNIMAGE
/
DELPHI40
/
HELP
/
EXAMPLES
/
COMBOBOX
/
COMBOBOX.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-06-17
|
299 b
|
16 lines
program combobox;
uses
Forms,
combform in 'combform.pas' {ComboForm},
inptform in 'inptform.pas' {InputForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TComboForm, ComboForm);
Application.CreateForm(TInputForm, InputForm);
Application.Run;
end.