unit MainFrm; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, TntForms, StdCtrls, CheckLst, TntStdCtrls, TntDBCtrls; type TMainForm = class(TTntForm{TNT-ALLOW TTntForm}) TntComboBox1: TTntComboBox; TntEdit1: TTntEdit; TntMemo1: TTntMemo; TntListBox1: TTntListBox; TntCheckListBox1: TTntCheckListBox; Label1: TLabel; Label2: TLabel; Label3: TLabel; Label4: TLabel; Label5: TLabel; Button1: TButton; Button2: TButton; Button3: TButton; Button4: TButton; Label6: TLabel; procedure FormCreate(Sender: TObject); procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); procedure Button3Click(Sender: TObject); procedure Button4Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var MainForm: TMainForm; implementation {$R *.DFM} procedure TMainForm.FormCreate(Sender: TObject); begin if Win32Platform = VER_PLATFORM_WIN32_NT then Font.Name := 'MS Shell Dlg 2' else Font.Name := 'MS Shell Dlg'; end; procedure TMainForm.Button1Click(Sender: TObject); begin Caption := TntEdit1.Text; end; procedure TMainForm.Button2Click(Sender: TObject); begin TntComboBox1.Items.Add(TntEdit1.Text); end; procedure TMainForm.Button3Click(Sender: TObject); begin TntListBox1.Items.Add(TntEdit1.Text); end; procedure TMainForm.Button4Click(Sender: TObject); begin TntCheckListbox1.Items.Add(TntEdit1.Text); end; end.