Added a shrink changing form but the math seems to be off so it is disabled for the time being. Updated the interface on the main form and the modify record form to include the log viewer and the log console.

This commit is contained in:
2017-04-18 01:51:51 -05:00
parent c72fbf88cf
commit ba5808443b
11 changed files with 6572 additions and 39 deletions
@@ -0,0 +1,28 @@
using System.Windows.Forms;
namespace AdvertsingProfitControl
{
public partial class FrmChangeShrink : Form
{
public int Shrink;
public FrmChangeShrink()
{
InitializeComponent();
Shrink = 30;
}
public FrmChangeShrink(int shrink)
{
InitializeComponent();
shrinkNumericUpDown.Value = shrink;
Shrink = shrink;
}
private void shrinkAcceptButton_Click(object sender, System.EventArgs e)
{
Shrink = int.Parse(shrinkNumericUpDown.Text);
Close();
}
}
}