Beispiel #1
0
        private void addAttachmentsToolStripMenuItem_Click_1(object sender, EventArgs e)
        {
            Cursor = System.Windows.Forms.Cursors.WaitCursor;

            Solsage_Process_Management_System.Forms.Attachments frmAtt = new Solsage_Process_Management_System.Forms.Attachments();
            frmAtt.MdiParent = this;
            frmAtt.Show();

            Cursor = System.Windows.Forms.Cursors.Default;
        }
 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;
 }