Ejemplo n.º 1
0
 public string GetSelectedCheckListBoxIdx(CheckedListBox anything, int idx)
 {
     string rStr = string.Empty;
     anything.BeginInvoke((MethodInvoker)delegate {
         try
         {
             rStr = (string) anything.Items[idx];
         }
         catch
         {
         }
     });
     return rStr;
 }