MS Access表单字段中的拼写检查代码 - 接受更改时抛出错误

时间:2012-08-02 19:11:39

标签: vba ms-access access-vba ms-access-2003 ms-access-2000

我在MS Access表单中的文本框的AfterUpdate事件中添加了以下代码:

Private Sub txtComments_AfterUpdate()
With Me!txtComments
    .SetFocus
    If Len(.Value) > 0 Then
        DoCmd.SetWarnings False
        .SelStart = 1
        .SelLength = Len(.Value)
        DoCmd.RunCommand acCmdSpelling
        .SelLength = 0
        DoCmd.SetWarnings True
    End If
End With
End Sub

当用户退出该字段时,会运行拼写检查。它部分有效。它会打开拼写检查对话框,并找到第一个错误。问题是,当您单击忽略,更改等以处理/修复拼写错误时,代码将失败并显示以下错误框:

“为此字段设置为BeforeUpdate或ValidationRule属性的宏或函数阻止Microsoft Office Access在字段中保存数据。”

我尝试在拼写检查代码之前添加记录保存代码:

DoCmd.DoMenuItem acFormBar,acRecordsMenu,acSaveRecord,acMenuVer70 DoCmd.DoMenuItem acFormBar,acRecordsMenu,5,acMenuVer70

但这并没有解决它。

2 个答案:

答案 0 :(得分:5)

此代码用作On Exit事件(而不是After Update)。

Private Sub txtComments_Exit(Cancel As Integer)
With Me!txtComments
    .SetFocus
    If Len(.value) > 0 Then
        .SelStart = 1
        .SelLength = Len(.value)
        DoCmd.RunCommand acCmdSpelling
        .SelLength = 0
    End If
End With
End Sub

答案 1 :(得分:3)

使用与控件关联的更新事件不起作用,因为每次更改都会再次触发事件。你需要一个按钮,或者像:

Private Sub Spell_Click()
    With Me!txtComments
        .SetFocus
        .SelStart = 0
        .SelLength = Len(Me!txtComments)
    End With
    DoCmd.RunCommand acCmdSpelling
End Sub

可以通过添加一行来避免On Exit事件的一些问题:

    If Me.txtComments.Value <> Me.txtComments.OldValue Then
       With Me!txtComments
           .SetFocus
           .SelStart = 0
          .SelLength = Len(Me!txtComments)
       End With
    <...>    

至少只有当你通过控件直到保存记录时才会运行,而不是每次都是,txtComments是否被更改。