如果用户输入 RED,将表单字段自动更改为 YELLOW 的正确程序是什么?
我会尝试一个 BeforeUpdate 事件,但文档说:
如果您尝试修改在事件过程中触发 BeforeUpdate 事件的控件中包含的数据,则会发生运行时错误。
这似乎违背了目标。
例子:
Private Sub color_BeforeUpdate(Cancel As Integer)
If color = "YELLOW" Then
color = "RED"
End If
End Sub