This commit is contained in:
2022-07-01 22:43:41 +00:00
parent 0bf27c88be
commit 0e187e4564
11 changed files with 406 additions and 3947 deletions

View File

@@ -15,6 +15,7 @@ namespace AyaNovaQBI
public MainForm()
{
InitializeComponent();
this.Icon = AyaNovaQBI.Properties.Resources.logo;
}
async private void MainForm_Load(object sender, EventArgs e)
@@ -47,6 +48,7 @@ namespace AyaNovaQBI
//}
}
grid.Visible = true;
menuStrip1.Enabled = true;
MessageBox.Show("DONE / OK");
// grid.DataSource = util.GetInvoiceableItems();
@@ -114,5 +116,17 @@ namespace AyaNovaQBI
await util.ValidateSettings(true);
//TODO: CODE THIS InitInvoices();
}
private void mapAndImportToolStripMenuItem_Click(object sender, EventArgs e)
{
Map m = new Map();
if (m.ShowDialog() == DialogResult.Abort)
this.Close();
else
{
m.Dispose();
//todo: this.InitInvoices();
}
}
}
}