Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
在表A窗口,要求点击收入项目单选框,项目列表框中显示的是收入项目表中的项目,
要求点击开支项目单选框,项目列表框中显示的是开支项目表中的项目。
现在我的只显示开支项目,不会显示收入项目。请高手指点如何设置。谢谢!!
下载信息 [文件大小: 下载次数: ] | |
点击浏览该文件:管理项目3.table |
RadioButton1控件,CheckedChanged事件:
if e.Sender.Checked = True
e.Form.Controls("ComboBox1").ComboList = DataTables("收入项目").GetComboListString("收入项目")
End If
RadioButton2控件,CheckedChanged事件:
if e.Sender.Checked = True
e.Form.Controls("ComboBox1").ComboList = DataTables("开支项目").GetComboListString("开支项目")
End If