Io immagino che dopo i campi FEG e LayerTye, tu hai anche CampoX, CampoY e CampoZ (su questi ultimi 3 vorresti abilitare/disabilitare secondo come hai proposto). Io sfrutterei l'evento "Dopo aggiornamento" (AfterUpdate) su LayerType e scriverei questo:
Private Sub LayerType_UfterUpdate()
If Me!LayerType <> "IndepDemand" Then
Me!CampoX.Enabled = False
Me!CampoY.Enabled = False
Me!CampoZ.Enabled = False
End If
End Sub