There are a number of ways to set a check box value from a boolean variable.
Some people just put their head down and plow through it like a bull in a china shop and write code like the following:
If bActive = True then
chkActive.Value = 1
else
chkActive.Value = 0
End If
Some people prefer to make a single line If..Then..Else statement. Still others do a conditional if (IIF):