M
Max Sandman
When I had this code commented out, everything ran fine. But as soon as
I uncommented it, it nuked the databindings for every field bound to the
dataset. Does anybody know what's wrong with it?
try
{
if (dataSet11.MyTable[0].stringfield1.Length == 0)
check1.Checked = true;
else
check1.Checked = false;
}
catch (StrongTypingException ex)
{
// fld1 is null
check1.Checked = true;
}
sandman
I uncommented it, it nuked the databindings for every field bound to the
dataset. Does anybody know what's wrong with it?
try
{
if (dataSet11.MyTable[0].stringfield1.Length == 0)
check1.Checked = true;
else
check1.Checked = false;
}
catch (StrongTypingException ex)
{
// fld1 is null
check1.Checked = true;
}
sandman