以文本方式查看主题
- Foxtable(狐表) (http://foxtable.net/bbs/index.asp)
-- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2)
---- 求助datetimapicker如何返回系统当前时间 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=63488)
|
-- 作者:bxa820
-- 发布时间:2015/1/22 8:24:00
-- 求助datetimapicker如何返回系统当前时间
点击增加行时,两个datetimapicker如何返回系统当前时间,第一个返回日期,第二个返回几点几分,代码如何写?写在什么事件中?小白在此 此主题相关图片如下:photo.png
谢大神们指点。
|
-- 作者:Bin
-- 发布时间:2015/1/22 8:26:00
--
绑定了列? 那就为列赋值
tables("XX").current("日期")=date.today tables("XX").current("时间")=date.now
写到窗口ALterLoad
|
-- 作者:bxa820
-- 发布时间:2015/1/22 8:42:00
--
绑定了列 窗口ALterLoad中写入 tables("时间测试").current("日期")=date.today tables("时间测试").current("时间")=date.now 预览时候提示运行错误 此主题相关图片如下:photo1.png
未将对象引用设置到对象的实例。
|
-- 作者:Bin
-- 发布时间:2015/1/22 8:45:00
--
if tables("时间测试").current isnot nothing then tables("时间测试").current("日期")=date.todaytables("时间测试").current("时间")=date.now end if
|
-- 作者:bxa820
-- 发布时间:2015/1/22 8:56:00
--
谢谢您的细心指导现在点击增加行后两个datetimapicker的内容都还是是空的,需要用鼠标点击控件后,按空格键才会显示当前时间,如何在点击增加行后直接显示? 谢谢。
|
-- 作者:有点甜
-- 发布时间:2015/1/22 9:01:00
--
DataRowAdded事件,加入
e.DataRow("日期")=date.today
e.DataRow("时间")=date.now
|