To be clear you should refer to it as a check box, which is the standard
terminology.
Short answer: In the check box After Update event (and in the form's
Current event) you can make the text boxes visible with something like the
following:
If Me.chkYourCheckBox = True Then
Me.txtTextBox1.Visible = True
Me.txtTextBox2.Visible = True
Else
Me.txtTextBox1.Visible = False
Me.txtTextBox2.Visible = False
End If
A few more details: Click the check box to select it, then click View >
Properties (or right click it and select Properties). Click the Events tab,
then click next to After Update. Click the three dots, click Code Builder,
and click OK. In the window that opens the cursor should be blinking
between a line that starts Private Sub and one that reads End Sub. Put the
code there, *substituting the actual names for your check box and text
boxes*.
A refinement: With the form open in design view, click View > Code, or
click the Code button on the toolbar. Click Insert > Procedure. Give the
procedure a name such as ShowBoxes, and click OK. Enter the code as
described. In the check box After Update event and in the form's Open
event, instead of putting the code you can call the code by the name you
just gave it:
Call ShowBoxes