private void loginBtn_Click(object sender, EventArgs e)
        {
            login = new DBClient();
            secureLogin = new Crypto();

            if (String.Compare(usernameField.Text, "") == 0)
            {

                MessageBox.Show("ERROR: Please enter a username.", "Gate of Gabethulu Launcher", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;

            }

            else if (login.verifyCredentials(usernameField.Text, secureLogin.generateSHA512PasswordHash(passwdField.Text)))
            {

                login.closeConnection();

                //STILL TRACING THE LACK OF USER NAME BACK TO ITS SOURCE  22222
                //THIS SEEMS TO WORK
                System.Diagnostics.Debug.WriteLine("Luncher usernameField.Text.ToSting() is: " + usernameField.Text.ToString());
                System.Diagnostics.Debug.WriteLine("Luncher usernameField.Text is: " + usernameField.Text);

                Dashboard mainWindow = new Dashboard(usernameField.Text.ToString());
                this.Visible = false;
                mainWindow.Show();

            }

            else
            {

                MessageBox.Show("ERROR:  Credentials not verified!", "Gate of Gabethulu Launcher", MessageBoxButtons.OK, MessageBoxIcon.Error);
                this.usernameField.Text = "";
                this.passwdField.Text = "";
                return;

            }
        }