예제 #1
0
 private void bookmark_list()
 {
     try
     {
         wnDm      wDm = new wnDm();
         DataTable dt  = null;
         dt = wDm.bookmarkList();
         for (int i = 0; i < dt.Rows.Count; i++)
         {
             chkListBox.Items.Add(dt.Rows[i]["SubName"].ToString());
         }
     }
     catch
     {
     }
 }