C# 求助! SQLServer数据库中的 字段的Datetime值 赋值 给dateTimePicker 如何实现?

privatevoidbtn_edit_Click(objectsender,EventArgse){if(dataGridView1.SelectedRows.Coun... private void btn_edit_Click(object sender, EventArgs e)
{
if (dataGridView1.SelectedRows.Count == 0)
{
MessageBox.Show("请选择需要修改的会员");
return;
}
else
{
text_Name.Text = dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[2].Value.ToString().Replace(" ", "");
combo_sex.Text = dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[3].Value.ToString().Replace(" ", "");
dateTimePicker1.Value = dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[4].Value;
......
......
}
}
dateTimePicker的属性设置 Format为Custom Value XXXX/XX/XX XX:XX

请问如何在C#中 把dataGridView1从 SQL中取得字段的Datetime值 赋值到窗体 中的dateTimePicker控件上?
以上的代码 在 程序运行 取值 过程中 到dateTimePicker1.Value = dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[4].Value;
就会出错..我就是不知道这句该怎么写..(本人属C# 初学者 所以希望能得到详细些的回答)
展开
 我来答
百度网友d242235
2011-06-14 · TA获得超过2385个赞
知道大有可为答主
回答量:1403
采纳率:84%
帮助的人:812万
展开全部
object obj = dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[4].Value;
DateTime time = Convert.ToDateTime(obj);
dateTimePicker.Value = time;
追问
采用过你的语句后
会在
DateTime time = Convert.ToDateTime(obj);
中报错的
显示为未处理FormatException
该字符串未被识别为有效的 DateTime。 ...
追答
你可以在那行代码加个断点,按F5运行程序。然后观察一下obj到底是什么
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9278dbf
2011-06-14 · TA获得超过1124个赞
知道小有建树答主
回答量:457
采纳率:0%
帮助的人:297万
展开全部
dateTimePicker.Value=Datetime值
更多追问追答
追问
dateTimePicker1.Value = dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[4].Value;
这句该怎么改写...?
追答
this.dateTimePicker1.Value = 后跟日期类型      
this.dateTimePicker1.Text =后跟字符串
你的dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[4].Value是个字符串,格式又可能不对应,所以赋值出现错误。你将前面dateTimePicker1.Value 改为.Text应该能实现你的目的:dateTimePicker1.text= dataGridView1.Rows[dataGridView1.CurrentCell.RowIndex].Cells[4].Value;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式