I have a modal data entry form that is launched from a Readonly subform on a tab. Everything displays properly on the form except I cannot chage any field values. The form params are set to True (Allow Deletions, Allow Edits and Data Entry).
The form is launched with:
Any suggestions please?
The form is launched with:
Code:
If isFinancial Then
queryName = "FinancialEntries"
Else
queryName = "FellowEntries"
End If
sqlFilter = "[FinanceFellowID] = " & ffID
DoCmd.OpenForm "frmFinancesFellowsCRUD", acNormal, queryName, sqlFilter, acFormEdit, acDialog
Any suggestions please?