public static void ShowLogs()
 {
     if (rlf == null || rlf.IsDisposed) {
         rlf = new ResponseLogForm();
         rlf.Show();
     }
     else {
         rlf.Focus();
     }
 }
 public static void ShowLogs()
 {
     if (rlf == null || rlf.IsDisposed)
     {
         rlf = new ResponseLogForm();
         rlf.Show();
     }
     else
     {
         rlf.Focus();
     }
 }