Hi guys,

What code will allow you to carry out an action based on whether or not a Check Box on a form is ticked?

So far, I've been using a check box called Chk1 and a command button called Cmd554.

I've been using the following code in the Cmd554_Click() event procedure -

VB Code:
  1. If Radio.Value = True Then
  2.         MsgBox "Ok"
  3.     End If

But that just brings up an error saying "You entered an expression that has no value" and highlights the

VB Code:
  1. If Radio.Value...

line of the code.

Any help would be apprecitated.

Thanks