如果这样,很简单,在设计窗口的时候,输入框不要绑定到任何列。
在窗口的AfterLoad事件设置代码:
e.form.Controls("TextBox1").Value = Tables("表A").Current("列1")
e.form.Controls("TextBox2").Value = Tables("表A").Current("列2")
保存按钮的代码为:
Tables("表B").Current("列1") = e.form.Controls("TextBox1").Value
Tables("表B").Current("列2") = e.form.Controls("TextBox2").Value