以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 日期显示问题 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=43723) |
-- 作者:zxyds2000 -- 发布时间:2013/12/13 15:33:00 -- 日期显示问题 在显示日期字段时,可否设置为 13-12-13 格式,省略20。 |
-- 作者:狐狸爸爸 -- 发布时间:2013/12/13 15:37:00 -- |
-- 作者:有点甜 -- 发布时间:2013/12/13 20:04:00 -- 可以,不过你要用到drawcell事件,设置 e.Text。 代码类似: If e.Col.name = "日期" Then If e.Row.IsNull("日期") = False Then Dim d As Date = e.Row("日期") e.text = Cstr(d.Year).substring(2) & "-" & format(d.month, "00") & "-" & format(d.day, "00") End If End If |