G
Guest
Access database column is set to true/false checkboxes
DataSet Table is set to boolean type
the following conditionals fail if the Access checkbox is "true" (i get invalid cast exceptions)
if ((bool)row["Resolved"]){...
if((bool)row["Resolved"]==true){...
if(row["Resolved"].ToString()=="True"){..
WHat the hell am i doing wrong????
thanks
DataSet Table is set to boolean type
the following conditionals fail if the Access checkbox is "true" (i get invalid cast exceptions)
if ((bool)row["Resolved"]){...
if((bool)row["Resolved"]==true){...
if(row["Resolved"].ToString()=="True"){..
WHat the hell am i doing wrong????
thanks