If e.Col.Name = "表名" Then Dim Name As String For Each dt As DataTable In DataTables Name = Name & "|" & dt.Name Next e.Col.ComboList = Name End If
-- 作者:白国栋
-- 发布时间:2017/7/5 10:50:00
--
用户名的话怎么弄呢?
-- 作者:有点甜
-- 发布时间:2017/7/5 10:55:00
--
If e.Col.Name = "用户名" Then Dim str As String = "" For Each user As UserInfo In users str &= "|" & user.Name Next e.Col.ComboList = str End If