From 33fdf2a7501e964c19d290b6ed72294de5c6b0f1 Mon Sep 17 00:00:00 2001 From: MaxXor Date: Thu, 29 Jan 2015 09:58:30 +0100 Subject: [PATCH] Delete frmDownloadAndExecute.cs --- Server/Forms/frmDownloadAndExecute.cs | 32 --------------------------- 1 file changed, 32 deletions(-) delete mode 100644 Server/Forms/frmDownloadAndExecute.cs diff --git a/Server/Forms/frmDownloadAndExecute.cs b/Server/Forms/frmDownloadAndExecute.cs deleted file mode 100644 index 49b4ab79..00000000 --- a/Server/Forms/frmDownloadAndExecute.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace xServer.Forms -{ - public partial class FrmDownloadAndExecute : Form - { - private readonly int _selectedClients; - - public FrmDownloadAndExecute(int selected) - { - _selectedClients = selected; - InitializeComponent(); - } - - private void btnDownloadAndExecute_Click(object sender, EventArgs e) - { - Core.Misc.DownloadAndExecute.URL = txtURL.Text; - Core.Misc.DownloadAndExecute.RunHidden = chkRunHidden.Checked; - - this.DialogResult = DialogResult.OK; - this.Close(); - } - - private void FrmDownloadAndExecute_Load(object sender, EventArgs e) - { - this.Text = string.Format("xRAT 2.0 - Download & Execute [Selected: {0}]", _selectedClients); - txtURL.Text = Core.Misc.DownloadAndExecute.URL; - chkRunHidden.Checked = Core.Misc.DownloadAndExecute.RunHidden; - } - } -}