-- 作者:狐狸爸爸
-- 发布时间:2011/12/12 15:30:00
--
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") Is .Current IsNot Nothing Then tb1.value = .Current("更新内容") tb2.value = .Current("更新原因") tb3.value = .Current("备注")
end if End With
|