TO: whom in may concern:
I'm working with messagebox.show's, and I'm trying to call one, and then another one. I get the first one, but not the second one. Could provide some insights please. I;ve included my C# source to show what I have done.
Thanks in advance.
Aug 8, 2022
RSVP Please.
========================
if (ifileQfound != 1) /// if file is not found.
{
Console.WriteLine(" We're in");
d = MessageBox.Show(this," DLL File_Error-FNF: Required 'datelibrary.Dll' file is not found. Exiting Out??...",
"DateWare Demo App", MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
Console.WriteLine(d);
if (d == DialogResult.OK)
{
this.Close();
Console.WriteLine("----");
d1 = MessageBox.Show(this, " DLL File_not_found. Do you want to fix the problem?. ",
"DateWare Demo App", MessageBoxButtons.YesNo, MessageBoxIcon.Question,
MessageBoxDefaultButton.Button2);
Console.WriteLine(d1);
if (d1 == DialogResult.Yes)
{
this.Close();
fixit = true;
}
else
{
Console.WriteLine("We don't want to fix it!. ");
fixit = false;
}
}
if(fixit)
{
Console.WriteLine("We want to fix it!. ");
}
Console.WriteLine(" We're Leaving..." + fixit.ToString());
Application.Exit();
}