以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  关于列表项目问题  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=7211)

--  作者:老有所乐
--  发布时间:2010/5/25 18:23:00
--  关于列表项目问题

在表A窗口,要求点击收入项目单选框,项目列表框中显示的是收入项目表中的项目,

要求点击开支项目单选框,项目列表框中显示的是开支项目表中的项目。

现在我的只显示开支项目,不会显示收入项目。请高手指点如何设置。谢谢!!

 下载信息  [文件大小:   下载次数: ]
图片点击可在新窗口打开查看点击浏览该文件:管理项目3.table


--  作者:czy
--  发布时间:2010/5/25 20:21:00
--  

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


--  作者:老有所乐
--  发布时间:2010/5/25 22:39:00
--  
谢谢C版主!