Exemple #1
0
        private void miDocuments_Click(object sender, EventArgs e)
        {
            Cursor.Current = Cursors.WaitCursor;

            GetClientUIDSelected();

            UIClientDocumentSet uicds = new UIClientDocumentSet();

            uicds.Show();

            Cursor.Current = Cursors.Arrow;
        }
Exemple #2
0
        private void miDocuments_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtUID.Text))
            {
                return;
            }

            Utils.ClientID = Convert.ToInt32(txtUID.Text);

            UIClientDocumentSet uicds = new UIClientDocumentSet();

            uicds.Show();
        }
        private void btnDocuments_Click(object sender, EventArgs e)
        {
            UIClientDocumentSet ucds = new UIClientDocumentSet();

            ucds.Show();
        }