
此主题相关图片如下:截图02.png

我更改后,出现如附件所示错误,麻烦狐爸再帮我看看:
Dim tb1 As WinForm.TextBox
Dim tb2 As WinForm.TextBox
Dim tb3 As WinForm.TextBox
tb1 = Forms("客户需求审核窗口").Controls("TextBox22")
tb2 = Forms("客户需求审核窗口").Controls("TextBox23")
tb3 = Forms("客户需求审核窗口").Controls("TextBox24")
With Tables("客户需求审核窗口_table2")
If .Current IsNot Nothing Then
tb1.text = .Current("更新内容")
tb2.text = .Current("更新原因")
tb3.text = .Current("备注")
End If
End With