Sök betalningar, fördela på mottagare under sökt period

This commit is contained in:
2023-09-12 22:12:45 +02:00
parent 2b6e48c3ef
commit de6e196809
8 changed files with 356 additions and 16 deletions

View File

@ -35,6 +35,7 @@
lblDateTo = new Label();
dtpTo = new DateTimePicker();
btnStartSearch = new Button();
flpPanel1 = new FlowLayoutPanel();
SuspendLayout();
//
// btnClose
@ -99,12 +100,23 @@
btnStartSearch.TabIndex = 7;
btnStartSearch.Text = "Starta sökning";
btnStartSearch.UseVisualStyleBackColor = true;
btnStartSearch.Click += btnStartSearch_Click;
//
// flpPanel1
//
flpPanel1.AutoScroll = true;
flpPanel1.BackColor = Color.Silver;
flpPanel1.Location = new Point(21, 102);
flpPanel1.Name = "flpPanel1";
flpPanel1.Size = new Size(668, 314);
flpPanel1.TabIndex = 8;
//
// frmSearchData
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(flpPanel1);
Controls.Add(btnStartSearch);
Controls.Add(dtpTo);
Controls.Add(lblDateTo);
@ -128,5 +140,6 @@
private Label lblDateTo;
private DateTimePicker dtpTo;
private Button btnStartSearch;
private FlowLayoutPanel flpPanel1;
}
}