不确定这是否可行。
我有一个带有“连续表格”子表格的MS Access表单,显示大约10个字段
(组合框,文本框和复选框)。
允许添加设置为是。
记录选择器设置为编号
目前,表单的行为是添加新行,用户只需更新任何可用字段即可 是否可以将此“添加新记录”行为限制为只发生一个指定字段?
答案 0 :(得分:2)
您可以使用以下代码:
Private Sub Form_Current()
If Me.NewRecord Then
Me.ControlNameHere.Enabled = False
Else
'Do you mean that once a record has been added, the
'user can update any field? If not, why not just disable
'fields that are protected? Otherwise
Me.ControlNameHere.Enabled = True
End If
End Sub