private void FormBriefcaseVessels_Load(object sender, EventArgs e)
 {
     // TODO: This line of code loads data into the 'attendance_rdbms.Vessel' table. You can move, or remove it, as needed.
     Vessel.FillVesselTable(MyConnection.GetConnection(), this.attendance_rdbms.Vessel);
     try
     {
         Portable.FillVesselTable(this.m_filepath, this.m_password, this.attendance_briefcase.Vessel);
     }
     catch (Exception e1)
     {
         MessageBox.Show(e1.Message);
     }
 }