unit DnaCodeScherm; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, DrieKnoppenScherm, Vcl.ActnList, Vcl.StdCtrls; type TfmDnaCodeScherm = class(TfmDrieKnoppenScherm) procedure FormShow(Sender: TObject); private { Private declarations } public { Public declarations } end; var fmDnaCodeScherm: TfmDnaCodeScherm; implementation {$R *.dfm} procedure TfmDnaCodeScherm.FormShow(Sender: TObject); begin btnLinksOnder.Action := actPallet; btnCentraalOnder.Action := actHome; btnRechtsOnder.Action := actVolgende; //edtPallet.Text := ''; //ActiveControl := edtPallet; inherited; end; end.