如何替换Access 2007中文本框的文本值
我在 access 2007 中有某种形式的文本框。 我试图用一些 VBA 替换文本框中文本中的所有点(.)。
这就是我所做的:
Private Sub eng_name_LostFocus()
Dim val As String
val = Replace(eng_name.Value, ".", " ")
eng_name.Value = val
End Sub
但它什么也没做......
我可以改变什么来解决这个问题?
I have text-box in some form in access 2007.
I am trying to replace all the dots(.) in the text of the text box with some VBA.
This is what i did:
Private Sub eng_name_LostFocus()
Dim val As String
val = Replace(eng_name.Value, ".", " ")
eng_name.Value = val
End Sub
but its do nothing...
what can i change to work it out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你只需要 AfterUpdate,因为它仅在
eng_name
的值更改时触发。我总是使用 Me!ControlName 来获取/设置 Access 中控件的值。
I think you only need AfterUpdate, as it is only triggered when the value of
eng_name
is changed.I always use Me!ControlName to get/set the value of a control in Access.