Index: PlanScan/UI/KlantinstellingenDetailScherm.dfm =================================================================== diff -u --- PlanScan/UI/KlantinstellingenDetailScherm.dfm (revision 0) +++ PlanScan/UI/KlantinstellingenDetailScherm.dfm (revision 372) @@ -0,0 +1,71 @@ +object fmKlantinstellingenDetail: TfmKlantinstellingenDetail + Left = 0 + Top = 0 + Caption = 'KlantinstellingenDetail' + ClientHeight = 176 + ClientWidth = 377 + Color = clBtnFace + Font.Charset = DEFAULT_CHARSET + Font.Color = clWindowText + Font.Height = -11 + Font.Name = 'Tahoma' + Font.Style = [] + OldCreateOrder = False + PixelsPerInch = 96 + TextHeight = 13 + object lblKlantId: TLabel + Left = 48 + Top = 48 + Width = 113 + Height = 19 + AutoSize = False + Caption = 'KlantId' + Font.Charset = DEFAULT_CHARSET + Font.Color = clWindowText + Font.Height = -16 + Font.Name = 'Tahoma' + Font.Style = [] + ParentFont = False + end + object lblExport: TLabel + Left = 48 + Top = 88 + Width = 113 + Height = 19 + AutoSize = False + Caption = 'Export' + Font.Charset = DEFAULT_CHARSET + Font.Color = clWindowText + Font.Height = -16 + Font.Name = 'Tahoma' + Font.Style = [] + ParentFont = False + end + object edtklantId: TEdit + Left = 167 + Top = 45 + Width = 121 + Height = 27 + Font.Charset = DEFAULT_CHARSET + Font.Color = clWindowText + Font.Height = -16 + Font.Name = 'Tahoma' + Font.Style = [] + ParentFont = False + TabOrder = 0 + Text = 'edtklantId' + end + object cbIsExport: TCheckBox + Left = 167 + Top = 90 + Width = 97 + Height = 17 + Font.Charset = DEFAULT_CHARSET + Font.Color = clWindowText + Font.Height = -16 + Font.Name = 'Tahoma' + Font.Style = [] + ParentFont = False + TabOrder = 1 + end +end Index: PlanScan/UI/KlantinstellingenDetailScherm.pas =================================================================== diff -u --- PlanScan/UI/KlantinstellingenDetailScherm.pas (revision 0) +++ PlanScan/UI/KlantinstellingenDetailScherm.pas (revision 372) @@ -0,0 +1,28 @@ +unit KlantinstellingenDetailScherm; + +interface + +uses + Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, + Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls; + +type + TfmKlantinstellingenDetail = class(TForm) + lblKlantId: TLabel; + lblExport: TLabel; + edtklantId: TEdit; + cbIsExport: TCheckBox; + private + { Private declarations } + public + { Public declarations } + end; + +var + fmKlantinstellingenDetail: TfmKlantinstellingenDetail; + +implementation + +{$R *.dfm} + +end.