设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 268|回复: 3
打印 上一主题 下一主题

DataGridView显示Datetime字符串

[复制链接]
跳转到指定楼层
1#
发表于 2009-3-16 23:09:15 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
首先将 DataGridView 要是显示时间的列(比如StartTime) 设为String 类型.

将对应的DateTable对应的列也设位String类型.

DataRow row = dt.NewRow();

Row["StartTime"] = DateTime.Now.ToString("HH:mm:ss fffffff");

注意秒与 秒的小数部分要用一个空格分割, 否则, 会出错. 秒的小数位数最高位7位

dt.Rows.Add(row);

//如果数据架构已更改,则为 true;如果只有值发生了更改,则为 false。

bindingSource1.ResetBindings(false);// 相当于.net1.1 的bund 方法



转回DateTime类型(也许保存到数据库里,想存为DateTime类型)

///

/// change string time to datetime type, the string time like '17:07:08 0346690'
///
/// the string time like '17:07:08 0346690'

/// if successfully convert the time, return the date time, else return the DateTime.MinValue;.
private DateTime ToDateTime(string strTime)
{
DateTime dt = DateTime.MinValue;
try
{
string[] strlist = strTime.Split(' ');
dt = Convert.ToDateTime(strlist[0]).AddTicks(Convert.ToInt32(strlist[1].PadRight(7,'0')));
}
catch
{ }
2#
发表于 2010-2-11 03:05:06 | 只看该作者
呵呵 放心 如我算错 你以后来砸我的帖子 呵呵
回复 支持 反对

使用道具 举报

3#
发表于 2010-3-16 13:05:06 | 只看该作者
加油!在奥斯卡上一连拿了11个奖项的好帖
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-20 04:26 , Processed in 0.083691 second(s), 11 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表