Re: Making a check box return "yes" or "no" instead of true false
It all depends what you are doing with the yes/no. When you want to assign the result to a variable then just use this:
Code
Private Sub DoSomething()
Dim sChkBoxResult As String
'// Your code ....
sChkBoxResult = IIf(CheckBox1.Value, "Yes", "No")
End Sub
Alternatively you could use something like this: