private void sendButton_Click(object sender, EventArgs e)
        {
            //Error checking
            if (userName.Text.Length == 0 || password.Text.Length == 0 ||
                minTimeDelay.Text.Length == 0 || maxTimeDelay.Text.Length == 0 ||
                startTime.Text.Length != 5 || endTime.Text.Length != 5 ||
                fileLoadedLabel.Text == "No loaded file" || text.Text == "")
            {
                MessageBox.Show("Please complete all information before sending!");
                return;
            }

            User user = User.getInstance();

            if (!user.checkTime())
            {
                MessageBox.Show("Not in sent time zone!");
                return;
            }

            summaryBox.Text = "";

            foreach (string _targetID in user.targetID)
            {
                Thread.Sleep(user.random.Next(user.minTimeDelay * 1000, user.maxTimeDelay * 1000));
                Process proc = null;
                try
                {
                    string batDir    = string.Format(Application.StartupPath);
                    string _userName = user.userName;
                    string _passWord = user.password;
                    string _message  = user.spintax();
                    //string _csvAddress = fileLoadedLabel.Text;
                    proc = new Process();
                    proc.StartInfo.WorkingDirectory = batDir;
                    proc.StartInfo.FileName         = "RunFBCHAT.bat";
                    proc.StartInfo.Arguments        = string.Format("\"{0}\" \"{1}\" \"{2}\" \"{3}\"", _userName, _passWord, _message, _targetID);
                    proc.StartInfo.CreateNoWindow   = false;
                    proc.Start();
                    proc.WaitForExit();
                    summaryBox.AppendText("Time:" + DateTime.Now.ToString("HH:mm:ss", System.Globalization.DateTimeFormatInfo.InvariantInfo) + "\r\n" + "Sent to:" + _targetID + "\r\n\r\n");
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.StackTrace.ToString());
                }
            }

            summaryBox.AppendText("Finished!");
        }