This commit is contained in:
@@ -49,21 +49,29 @@ namespace AyaNovaQBI
|
||||
cbQBItems.ValueMember = "id";
|
||||
btnCancel.Text = util.AyaTranslations["Cancel"];
|
||||
btnOK.Text = util.AyaTranslations["OK"];
|
||||
lblImport.Visible = btnImport.Visible = CanImport;
|
||||
}
|
||||
|
||||
|
||||
private void btnCancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
Choice = "CANCEL";
|
||||
DialogResult = DialogResult.Cancel;
|
||||
Close();
|
||||
}
|
||||
|
||||
private void btnOK_Click(object sender, EventArgs e)
|
||||
{
|
||||
Choice = "LINK";
|
||||
DialogResult = DialogResult.OK;
|
||||
Close();
|
||||
}
|
||||
|
||||
|
||||
private void btnImport_Click(object sender, EventArgs e)
|
||||
{
|
||||
Choice = "IMPORT";
|
||||
DialogResult = DialogResult.OK;
|
||||
Close();
|
||||
}
|
||||
}//eoc
|
||||
}//eons
|
||||
|
||||
Reference in New Issue
Block a user