Dim Y1 As string Y1 = e.form.Controls("TextBox1").TEXT Dim dr As DataRow dr = DataTables("表A").Find("单位名称 = '& Y1 &'") '找出控件TextBox1中随机录入的数据的指定行 If dr IsNot Nothing Then Tables("表A").Position = Tables("表A").FindRow(dr) End if
5楼
贺老六 发表于:2008/9/30 17:44:00
dr = DataTables("表A").Find("单位名称 = '" & Y1 & "'")
6楼
t_fs 发表于:2008/9/30 18:13:00
谢谢,当前表中已通过,功能已实现!
我想将上述代码分成二部分,即A表获取控件中的值:(Y1在项目初始属性中设为全局字符型变量)
Dim Y1 As string Y1 = e.form.Controls("TextBox1").TEXT
然后,转到B表后,移动指针找到 单位名称=Y1 的行上。 B表窗口按扭的公式如下:
Dim dr As DataRow dr = DataTables("表B").Find("单位名称 = '" & Y1 & "'") If dr IsNot Nothing Then Tables("表B").Position = Tables("表B").FindRow(dr) End if