以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  表名自动收集问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=120106)

--  作者:nxqtxwz
--  发布时间:2018/6/7 10:42:00
--  表名自动收集问题
请问,我的项目中有三十多个表,如何实现在授权表的表名列中自动列出这些表名供选择输入呢。
--  作者:有点甜
--  发布时间:2018/6/7 11:18:00
--  

prepareEdit事件

If e.Col.Name = "bm"Then   
    Dim s As String = ""
    For Each t As Table In Tables
        s = s & "|" & t.name
    Next
    e.Col.ComboList = s   
End If