B2019-108 -When the import form is closed the values get reset
This commit is contained in:
parent
775fd07854
commit
4e730bb092
@ -4190,9 +4190,14 @@ namespace Volian.Controls.Library
|
|||||||
{
|
{
|
||||||
if (fiwc == null) fiwc = new frmImportWordContents();
|
if (fiwc == null) fiwc = new frmImportWordContents();
|
||||||
fiwc.MyStepRTB = this.MyStepRTB;
|
fiwc.MyStepRTB = this.MyStepRTB;
|
||||||
|
// B2019-108 When closed set value to null
|
||||||
|
fiwc.FormClosed += fiwc_FormClosed;
|
||||||
fiwc.Show();
|
fiwc.Show();
|
||||||
}
|
}
|
||||||
|
void fiwc_FormClosed(object sender, FormClosedEventArgs e)
|
||||||
|
{
|
||||||
|
fiwc = null;
|
||||||
|
}
|
||||||
private void btnCMImgSz_Click(object sender, EventArgs e)
|
private void btnCMImgSz_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
StepPanelTabDisplayEventArgs args = new StepPanelTabDisplayEventArgs("Change Image Size");
|
StepPanelTabDisplayEventArgs args = new StepPanelTabDisplayEventArgs("Change Image Size");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user