Binding a checkbox that contain Y/N values
I am running into the following error attempting to bind a check box with the following code:
runtime error: "String was not recognized as a valid Boolean."
code:
checkAcademicBox1.DataBindings.Add("checked",custo merDataSet, "customer.usr_sp_academic");
Any advice on how to approach this and eliminate error?
|