Appending a date to the output file is now working.
This commit should resolve issue #1. Appending a date to the output file is now a selectable option in the app configuration.
This commit is contained in:
25
ConfForm.Designer.cs
generated
25
ConfForm.Designer.cs
generated
@@ -42,6 +42,8 @@ namespace PDF_Merge
|
||||
outPathBtn = new Button();
|
||||
FileLable = new Label();
|
||||
FileNameBox = new TextBox();
|
||||
fileExtlabel = new Label();
|
||||
appendDatecheckBox = new CheckBox();
|
||||
SuspendLayout();
|
||||
//
|
||||
// saveBtn
|
||||
@@ -144,11 +146,32 @@ namespace PDF_Merge
|
||||
FileNameBox.Size = new Size(150, 31);
|
||||
FileNameBox.TabIndex = 10;
|
||||
//
|
||||
// fileExtlabel
|
||||
//
|
||||
fileExtlabel.AutoSize = true;
|
||||
fileExtlabel.Location = new Point(327, 114);
|
||||
fileExtlabel.Name = "fileExtlabel";
|
||||
fileExtlabel.Size = new Size(44, 25);
|
||||
fileExtlabel.TabIndex = 11;
|
||||
fileExtlabel.Text = ".pdf";
|
||||
//
|
||||
// appendDatecheckBox
|
||||
//
|
||||
appendDatecheckBox.AutoSize = true;
|
||||
appendDatecheckBox.Location = new Point(171, 187);
|
||||
appendDatecheckBox.Name = "appendDatecheckBox";
|
||||
appendDatecheckBox.Size = new Size(144, 29);
|
||||
appendDatecheckBox.TabIndex = 12;
|
||||
appendDatecheckBox.Text = "Append Date";
|
||||
appendDatecheckBox.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// ConfForm
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(10F, 25F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(500, 282);
|
||||
Controls.Add(appendDatecheckBox);
|
||||
Controls.Add(fileExtlabel);
|
||||
Controls.Add(FileNameBox);
|
||||
Controls.Add(FileLable);
|
||||
Controls.Add(outPathBtn);
|
||||
@@ -180,5 +203,7 @@ namespace PDF_Merge
|
||||
private Button outPathBtn;
|
||||
private Label FileLable;
|
||||
private TextBox FileNameBox;
|
||||
private Label fileExtlabel;
|
||||
private CheckBox appendDatecheckBox;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user