yes . Make a function in your subform that hides the fields in question ( let's call it HideFields ). Then call that function of the subform from your mainform when the conditions are met. Don't forget to give your subform control a name, otherwise you can't access it.
If <condition> then
currform.<name of subform control>.form.hidefields ;
Comments