Yes you can. go to File - New - (in german version "Weitere") the rest is shown in the screenshot of course you can use the red marked.
you can add buttons, fields ... .
But you have to write every funktion by own hand.
like this:
Delphi-Quellcode:
procedure TMainForm.pmAddClick(Sender: TObject);
// Job hinzufügen
begin
// here you can set standart values if you need
TEditChange.ShowModal;
if not (TEditChange.ModalResult = mrCancel)
then // maybe use mrOK and leave "not"
begin
// do sometheng whith the Input Data
lvSourceDestination.Items.Add;
lvSourceDestination.Items[lvSourceDestination.Items.Count-1].SubItems.clear;
lvSourceDestination.Items[lvSourceDestination.Items.Count-1].SubItems.add(TEditChange.eSourcePath.Text);
lvSourceDestination.Items[lvSourceDestination.Items.Count-1].SubItems.add(TEditChange.eDestinationPath.Text);
lvSourceDestination.Items[lvSourceDestination.Items.Count-1].SubItems.add(TEditChange.eApplicationPath.Text);
// reset the edit fields, if you don`t do the old is shown at next show
TEditChange.eSourcePath.Text := '
';
TEditChange.eDestinationPath.Text := '
';
TEditChange.eApplicationPath.Text := '
';
end
end;
edit: In D7 it`s in File - New - (in german version "Weitere") in the register "Dialogs"