private void cmdBrowseAttch2_Click(object sender, EventArgs e)
 {
     Solsage_Process_Management_System.Forms.Attachments frmAtt = new Solsage_Process_Management_System.Forms.Attachments();
     frmAtt.groupBox1.Text = "Select Attachment";
     if (frmAtt.ShowDialog() == DialogResult.OK)
     {
         txtAttachment2.Text = frmAtt.sResult;
     }
     txtFkAtt2.Text = txtAttachment2.Text;
 }