void HamDeTaiGoiLai(Object sender, SVR_Basic.DeTaiCompletedEventArgs e) { try { string rs = e.Result; tb_DeTai.Text = rs; } catch (System.Exception ex) { } Thread.Sleep(1000); }
void HamGetAuthorsGoiLai(Object sender, SVR_Basic.GetAuthorsCompletedEventArgs e) { try { string[] rs = e.Result; for (int i = 0; i < rs.Count(); i++) { lv_ThanhVien.Items.Add(rs[i]); } } catch (System.Exception ex) { } Thread.Sleep(1000); }