This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user