使用代码设置列日期格式:http://www.foxtable.com/webhelp/topics/1611.htm
Dim tbl As WinForm.Table
tbl = e.Form.CreateSQLTable("Table1", "Select [_identify],订单日期,订单时间,员工,城市,地铁站,主客服,单价,计价类型,客服网名,订单状态,取消说明,订单成功,未成说明,结算金额,车费,发单时间 From {订单明细表} where 订单日期 = '" & Date.today & "'","订单管理系统")
tbl.SetBounds(10, 10, 1200, 600)
e.Form.AddControl(tbl)
Tables("窗口名称_Table1").Sort = "员工"
Tables("窗口名称_Table1").AllowEdit = False
dataTables("窗口名称_Table1").DataCols("订单时间").SetDateTimeFormat(DateTimeFormatEnum.DateTime)