Implemented the first version of the report settings to help compensate for the screen resolution dependence the PDF engines seem to have.
This commit is contained in:
+21
-1
@@ -37,6 +37,7 @@
|
||||
this.addRecordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.modifyRecordMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.reportsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.clearRecordToolsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.clearCurrentRecordSelectedDateToolsMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
||||
@@ -110,6 +111,7 @@
|
||||
this.grossProfitEstimatedWeeklyDeptmartmentExpenseLabel = new System.Windows.Forms.Label();
|
||||
this.perfectGrossProfitLabel = new System.Windows.Forms.Label();
|
||||
this.grossProfitDollarGrossProfitLabel = new System.Windows.Forms.Label();
|
||||
this.generateReportMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mainMenu.SuspendLayout();
|
||||
this.mainTableLayoutPanel.SuspendLayout();
|
||||
this.commentMainTableLayoutPanel.SuspendLayout();
|
||||
@@ -203,10 +205,19 @@
|
||||
//
|
||||
// reportsMainMenu
|
||||
//
|
||||
this.reportsMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.generateReportMenuItem,
|
||||
this.settingsToolStripMenuItem});
|
||||
this.reportsMainMenu.Name = "reportsMainMenu";
|
||||
this.reportsMainMenu.Size = new System.Drawing.Size(95, 34);
|
||||
this.reportsMainMenu.Text = "R&eports";
|
||||
this.reportsMainMenu.Visible = false;
|
||||
//
|
||||
// settingsToolStripMenuItem
|
||||
//
|
||||
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
|
||||
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(256, 34);
|
||||
this.settingsToolStripMenuItem.Text = "&Paper Settings";
|
||||
this.settingsToolStripMenuItem.Click += new System.EventHandler(this.DisplayReportSizeSettingsForm);
|
||||
//
|
||||
// toolsMainMenu
|
||||
//
|
||||
@@ -997,6 +1008,13 @@
|
||||
this.grossProfitDollarGrossProfitLabel.TabIndex = 2;
|
||||
this.grossProfitDollarGrossProfitLabel.Text = "Dollar Gross Profit: ";
|
||||
//
|
||||
// generateReportMenuItem
|
||||
//
|
||||
this.generateReportMenuItem.Name = "generateReportMenuItem";
|
||||
this.generateReportMenuItem.Size = new System.Drawing.Size(256, 34);
|
||||
this.generateReportMenuItem.Text = "&Generate Report";
|
||||
this.generateReportMenuItem.Click += new System.EventHandler(this.GenerateReportMenuItemClick);
|
||||
//
|
||||
// FrmMain
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);
|
||||
@@ -1126,6 +1144,8 @@
|
||||
private System.Windows.Forms.ToolStripMenuItem clearCurrentActiveYearTools;
|
||||
private System.Windows.Forms.ToolStripMenuItem examineLogsToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem testToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem generateReportMenuItem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user