-- 作者:aidimeng
-- 发布时间:2015/11/24 9:11:00
-- 未实例化
Dim Val As Date = Date.Today If InputValue(Val, "提示","请输入日期:") Then Output.Show(Val) End If Dim d1 As Date= Tables("窗口1_hr") .Current ("入职日期") Tables("窗口1_hr") .Current ("工龄")= Date.Today().Year-d1.Year & "年" & Math.Abs(Date.Today().Month-d1.Month) & "月"
Tables("窗口1_hr").Filter=""
写在按钮click 事件中 实现目的: 原本表事件中写好了 工龄计算公式,因需要 有时会涉及到工龄的重新计算,想着通过inputvalue 输入一个日期,以此日期来重算下工龄
运行报错
此主题相关图片如下:qq图片20151124091005.png
[此贴子已经被作者于2015/11/24 9:22:27编辑过]
|