private void ErrorSplash(TextBox text, string message)
 {
     text.Focus();
     ErrorToolTip.Hide(text);
     ErrorToolTip.Show("", text);
     ErrorToolTip.Show(message, text);
 }
 private void PanelTBox_TextChanged(object sender, EventArgs e)
 {
     ErrorToolTip.Hide(this);
 }