keydown事件
If e.keycode = keys.enter Then
e.cancel = true
e.form.controls("textbox1").select
End If
有点甜老师 是下面表增加行 比如我已经在控件3中输入了内容后 回车就会在下面的表自动增加一行
明白了 是在控件3的keydown事件增加下面的代码:
If e.keycode = keys.enter Then e.cancel = True e.form.controls("Table1").Select e.form.controls("Table1").Table.addnewEnd If