Пример #1
0
 private void Button1_Click(object sender, EventArgs e)
 {
     StarsSupremacyHostDLL.StarsSupremacyHostDLL tdll = new StarsSupremacyHostDLL.StarsSupremacyHostDLL();
     string prompt = Conversions.ToString(tdll.CheckXFile(this.txtFilename.Text));
     if (prompt == "")
     {
         Interaction.MsgBox("File was OK", MsgBoxStyle.ApplicationModal, null);
     }
     else
     {
         Interaction.MsgBox(prompt, MsgBoxStyle.ApplicationModal, null);
     }
 }
Пример #2
0
        private void Button1_Click(object sender, EventArgs e)
        {
            StarsSupremacyHostDLL.StarsSupremacyHostDLL tdll = new StarsSupremacyHostDLL.StarsSupremacyHostDLL();
            string prompt = Conversions.ToString(tdll.CheckXFile(this.txtFilename.Text));

            if (prompt == "")
            {
                Interaction.MsgBox("File was OK", MsgBoxStyle.ApplicationModal, null);
            }
            else
            {
                Interaction.MsgBox(prompt, MsgBoxStyle.ApplicationModal, null);
            }
        }