以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 请教 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=26696) |
-- 作者:hejfen -- 发布时间:2012/12/12 9:31:00 -- 请教 示例一 列出订单表中所有的客户名单: Dim Customers As List(Of String)Customers = DataTables("订单").GetUniqueValues("", "客户") For Each Customer As String In Customers Output.Show(Customer) Next以上帮助内容中取得的客户是经过排序的,若我想要不用经过排序的客户,该如何写代码? |
-- 作者:lin_hailun -- 发布时间:2012/12/12 9:39:00 -- 用这个,根据 _Sortkey 排序,然后,用 | 分割。 http://www.foxtable.com/help/topics/1435.htm |