I have a two columns the one is checkStatus and the other one is EmployeeName
i already get all the names but i dont know how to get the checkStatus if the status is true then it must be checked and if not it not checkes
string Query = "Select Distinct EmployeeName From tblschedule Where ScheduleFrom BETWEEN '"+clsSQLcon.DateFrom1+"' AND '"+ clsSQLcon.DateTo1 + "' "; ;
using (MySqlCommand cmd = new MySqlCommand(Query, conn))
{
try
{
conn.Open();
using (MySqlDataReader myReader = cmd.ExecuteReader())
{
while (myReader.Read())
{
string employeeName = (myReader.IsDBNull(myReader.GetOrdinal("EmployeeName")) ?
string.Empty : myReader["EmployeeName"].ToString());
checkedListBox1.Items.Add(employeeName);
}
}
}
this is my code to get the names..
@ Jonjon Candare. You can try to refer to my code. I set checkStatus to BIT type in the database. Add checkStatus to the query statement and read checkStatus when reading data. Then make a judgment and set the SetItemChecked of checkedListBox1.
My cs code is as follows:
The result is shown in the picture :