예제 #1
0
 void Client_GetAttributesFromArchiveCompleted(object sender, ServiceReferenceAdministration.GetAttributesFromArchiveCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         this.AssignAttributes(e.Result);
     }
     else
     {
         TrapError(e.Error);
     }
     CloseWaitDialog();
 }
예제 #2
0
 void Client_GetAttributesFromArchiveCompleted(object sender, ServiceReferenceAdministration.GetAttributesFromArchiveCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         this.documents = e.Result;
         this.radGridView.DataSource = documents;
     }
     else
     {
         TrapError(e.Error);
     }
     CloseWaitDialog();
 }
예제 #3
0
 void Client_GetAttributesFromArchiveCompleted(object sender, ServiceReferenceAdministration.GetAttributesFromArchiveCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         cbAttribute.Text       = String.Empty;
         attributes             = e.Result;
         cbAttribute.DataSource = attributes;
     }
     else
     {
         TrapError(e.Error);
     }
     CloseWaitDialog();
 }