Skip to content

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kovalsky committed Sep 30, 2021
1 parent 39e7579 commit 67fe8fb
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions ProcessingManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
int batchPrefixLen = batchPrefix.Length;
var sb_ExportScript = new System.Text.StringBuilder();
string newline = Environment.NewLine;
string ebiURL = @"https://www.elegantbi.com";

// Start screen
System.Windows.Forms.Form newForm = new System.Windows.Forms.Form();
Expand All @@ -31,6 +32,7 @@
System.Windows.Forms.ComboBox batchComboBox = new System.Windows.Forms.ComboBox();
System.Windows.Forms.Button goButton = new System.Windows.Forms.Button();
System.Windows.Forms.Label homeToolLabel = new System.Windows.Forms.Label();
System.Windows.Forms.LinkLabel ebiHome = new System.Windows.Forms.LinkLabel();

// Main screen
System.Windows.Forms.Panel topPanel = new System.Windows.Forms.Panel();
Expand Down Expand Up @@ -97,7 +99,7 @@
System.Drawing.Font stdFont = new Font("Century Gothic", 10);

// Form
newForm.TopMost = true;
newForm.TopLevel = true;
newForm.BackColor = bkgrdColor;
newForm.Text = "Processing Manager";
newForm.Size = new Size(formWidth,formHeight);
Expand All @@ -122,6 +124,17 @@
startPanel.Size = new Size(formWidth,formHeight);
startPanel.Location = new Point(0,0);

startPanel.Controls.Add(ebiHome);
ebiHome.Text = "Designed by Elegant BI";
ebiHome.Size = new Size(200,40);
ebiHome.Location = new Point(165,460);
ebiHome.Font = elegantFont;

ebiHome.LinkClicked += (System.Object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e) => {
System.Diagnostics.Process.Start(ebiURL);
};

// Panels
topPanel.Visible = false;
topPanel.Size = new Size(formWidth,70);
Expand Down Expand Up @@ -169,7 +182,7 @@

// Start Screen Objects
homeToolLabel.Text = "Processing Manager";
homeToolLabel.Size = new Size(450,350);
homeToolLabel.Size = new Size(450,100);
homeToolLabel.Location = new Point(80,150);
homeToolLabel.Font = homeToolNameFont;

Expand Down

0 comments on commit 67fe8fb

Please sign in to comment.