-- 作者:lianghanyu
-- 发布时间:2020/10/11 10:34:00
--
另外,我在窗口里关联了一个表格的日期,
窗口中有一个"清除按钮",目的是一键清除所有值,然后保存.
问题: 为什么我明明清除,并且在窗口里也显示那个日期格子为空了, 但是表格那里的日期为什么没有清空?再次打开窗口,日期依然是原来的?
清除 命令如下:
For Each ctl As WinForm.Control In e.Form.Controls
If TypeOf ctl Is WinForm.CheckBox Then
Dim rdo As WinForm.CheckBox = ctl rdo.Checked = False ElseIf Typeof ctl Is WinForm.ComboBox Then Dim com As WinForm.ComboBox = ctl com.text = "" ElseIf Typeof ctl Is WinForm.DateTimePicker Then Dim de As WinForm.DateTimePicker =ctl de.text = "" End If Next Tables("项目总表").Current("设计内容") = "" Tables("设计进度表").save
此主题相关图片如下:222.gif
|