use the Forms Load Event, and a Select Case statement to set the appropriate Option/Toggle/CheckBox Enable to False as in this example
Private Sub Form_Load()
Select Case DatePart("w", date)
Case 1 'Sunday
Option15.Enabled = False
Case 2 'Monday
Option3.Enabled = False
Case 3 'Tuesday
Option5.Enabled = False
Case 4 'Wednesday
Option7.Enabled = False
Case 5 'Thursday
Option9.Enabled = False
Case 6 'Friday
Option11.Enabled = False
Case 7 'Saturday
Option13.Enabled = False
End Select
End Sub
This is one way to do it, probably others
PaulF