以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  二个窗口数据录入到同一数据表中  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=85075)

--  作者:大红袍
--  发布时间:2016/5/17 10:51:00
--  

做个具体的实例上传上来。


--  作者:大红袍
--  发布时间:2016/5/17 10:52:00
--  

 主要是在下拉控件那里,定义一下数据行,即可

 

http://www.foxtable.com/help/topics/0553.htm

 


--  作者:大红袍
--  发布时间:2016/5/17 10:56:00
--  

比如,TextChanged事件

 

Tables("表A").Filter = ""
Dim idx As Integer = Tables("表A").FindRow("工程名称 = \'" & e.Sender.Text & "\'")
If idx >= 0 Then
    Tables("表A").Position = idx
Else
    Tables("表A").Filter = "1=2"
End If


--  作者:大红袍
--  发布时间:2016/5/17 13:14:00
--  
 你控制那个两个控件的属性->只读->True,或者 可用->False