以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  求日期中年的部份  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=91630)

--  作者:hopestarxia
--  发布时间:2016/10/15 0:48:00
--  求日期中年的部份
 窗口中DateTimePicker1 为日期

窗口中TextBox1想根据DateTimePicker1的值自动出来该日期中年的部份:
DateTimePicker1中的TextChanged事件中使用如下语句无效:
 e.Form.Controls("TextBox1").value = Format(e.Form.Controls("DateTimePicker1").value,"yyyy") 

请指导此处正确的方法应该怎么写代码?



--  作者:hopestarxia
--  发布时间:2016/10/15 0:55:00
--  
谢谢,已解决.
Year(e.Form.Controls("DateTimePicker1").value) 

请问除了以上语言,还有别的语言吗?


--  作者:有点蓝
--  发布时间:2016/10/15 9:51:00
--  
e.Form.Controls("TextBox1").value = e.Form.Controls("DateTimePicker1").value.year