16 lines
382 B
ObjectPascal
16 lines
382 B
ObjectPascal
uses VCL,System.Windows.Forms;
|
|
var myForm: Form;
|
|
myButton: Button;
|
|
myTextBox: TextBox;
|
|
begin
|
|
myForm := new Form;
|
|
myButton := new Button;
|
|
myTextBox := new TextBox;
|
|
myButton.Text := 'Button1';
|
|
myButton.Left := 50;
|
|
myButton.Top := 80;
|
|
myTextBox.Text := '?????';
|
|
myForm.Controls.Add(myButton);
|
|
myForm.Controls.Add(myTextBox);
|
|
Application.Run(myForm);
|
|
end. |