Esempio n. 1
0
        private void UIClientMetadata_FormClosed(object sender, FormClosedEventArgs e)
        {
            _comingFromForm.Activate();
            _comingFromForm.Refresh();

            UIClientDocumentSet uicds = new UIClientDocumentSet();

            uicds = (UIClientDocumentSet)_comingFromForm;
            uicds.RefreshMetadata();
        }
Esempio n. 2
0
        private void miDocuments_Click(object sender, EventArgs e)
        {
            Cursor.Current = Cursors.WaitCursor;

            GetClientUIDSelected();

            UIClientDocumentSet uicds = new UIClientDocumentSet();

            uicds.Show();

            Cursor.Current = Cursors.Arrow;
        }
Esempio n. 3
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();
        }
Esempio n. 4
0
        private void btnDocuments_Click(object sender, EventArgs e)
        {
            UIClientDocumentSet ucds = new UIClientDocumentSet();

            ucds.Show();
        }