I have a form called "frmOrder"
It contains a subform called "frmOrderProducts"
"frmOrderProducts" has a sub form called "frmOrderProductDeliverySchedule"
"frmOrder" has a boolean field called "bolPO"
If "bolPO" = True then I don't want the user to be able to edit any records in "frmOrderProducts" BUT the user must be able to edit / add / delete records in "frmOrderProductDeliverySchedule"
What is the best way to achieve this?
I tried, in "frmOrder" current event:
If "bolPO" = True then "frmOrderProducts".enabled = False
but this renders "frmOrderProductDeliverySchedule" un-editable
Thanks in advance
It contains a subform called "frmOrderProducts"
"frmOrderProducts" has a sub form called "frmOrderProductDeliverySchedule"
"frmOrder" has a boolean field called "bolPO"
If "bolPO" = True then I don't want the user to be able to edit any records in "frmOrderProducts" BUT the user must be able to edit / add / delete records in "frmOrderProductDeliverySchedule"
What is the best way to achieve this?
I tried, in "frmOrder" current event:
If "bolPO" = True then "frmOrderProducts".enabled = False
but this renders "frmOrderProductDeliverySchedule" un-editable
Thanks in advance