【译文】如何防止在窗体上移动时意外清除数据
时 间:2013-07-30 09:10:20
作 者:周芳 ID:24526 城市:上海
摘 要:某个控件会整体选定(例如:1234AAA),导致不小心按个键就会全清掉,如果一获得焦点并放在首位(放在1的前面)就可避免这情况
正 文:
来自:微软 翻译:周芳
【译文】如何防止在窗体上移动时意外清除数据
当你的选项卡从一个文本框或备注字段到另一个形式,突出显示文本控制。这很容易让用户通过按一个键而不小心删除文本。通过几行代码,您可以将插入点放到文本框中第一的位置上,把意外删除文本的风险减小到最小化。
为此,给文本框的GotFocus事件创建一个程序。在GotFocus事件过程中,设置文本框的SelLength属性。 下面的例子说明了如何为一个取名为txtFirstName的文本框做这个功能。
VBA代码如下:
Private Sub txtFirstName_GotFocus()
Me.txtFirstName.SelLength = Me.txtFirstName.SelStart
End Sub
原文:How to: Prevent the Accidental Erasure of Data When Moving Between Controls on a Form
When you tab from one text box or memo field to another in a form, the text in the control is highlighted. This makes it easy for users to accidentally delete the text by pressing a key. By using a few lines of code, you can move the insertion point to the first position in the text box, minimizing the risk of accidentally deleting the text.
To do this, create a procedure for the text box's GotFocus event. In the GotFocus event procedure, set the SelLength property of the text box to its SelStart property. The following example illustrates how to do this for a text box named txtFirstName.
VBA:
Private Sub txtFirstName_GotFocus()
Me.txtFirstName.SelLength = Me.txtFirstName.SelStart
End Sub
Access软件网QQ交流群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- Access对子窗体数据进行批...(10.30)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
- 【Access选项卡示例】Ac...(09.09)
学习心得
最新文章
- Access快速开发平台--对上传...(11.22)
- Access快速开发平台企业版--...(11.18)
- 不会用多表联合查询,多表查询没结果...(11.16)
- 【案例分享】主键字段值含有不间断空...(11.16)
- Access快速开发平台--后台D...(11.14)
- 微软Access邀测新Monaco...(11.12)
- Access列表框左右互选、列表框...(11.11)
- 高效率在导入数据前删除记录(11.10)
- Access报价单转订单示例代码(11.08)
- Access系统自带的日期选择器不...(11.08)