In design view:
add the check box (We'll call it "Check1" for now)
right-click on the checkbox -
select "Build Event" then "Code Builder".
In this example make "Label5" visible when "check1" is
clicked. (Assuming that the visible property value
of "Label5" is set to "No")
Private Sub Check1_Click()
Label5.Visible = True
End Sub