G
Guest
When running the following code:
if (typeCheck.Checked == true && typeList.SelectedItem == "3")
{
return " and wopm3 = '3' or wopm3 = '3C' or wopm3 = '3I'";
}
I get the following error:
Operator '&&' cannot be applied to operands of type 'bool'
Hoiw can I alter my code to handle this error?
Thanks,
Dave
if (typeCheck.Checked == true && typeList.SelectedItem == "3")
{
return " and wopm3 = '3' or wopm3 = '3C' or wopm3 = '3I'";
}
I get the following error:
Operator '&&' cannot be applied to operands of type 'bool'
Hoiw can I alter my code to handle this error?
Thanks,
Dave