B2019-108 -When the import form is closed the values get reset

This commit is contained in:
Rich 2019-08-06 20:13:47 +00:00
parent 775fd07854
commit 4e730bb092

View File

@ -4190,9 +4190,14 @@ namespace Volian.Controls.Library
{
if (fiwc == null) fiwc = new frmImportWordContents();
fiwc.MyStepRTB = this.MyStepRTB;
// B2019-108 When closed set value to null
fiwc.FormClosed += fiwc_FormClosed;
fiwc.Show();
}
void fiwc_FormClosed(object sender, FormClosedEventArgs e)
{
fiwc = null;
}
private void btnCMImgSz_Click(object sender, EventArgs e)
{
StepPanelTabDisplayEventArgs args = new StepPanelTabDisplayEventArgs("Change Image Size");