Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
我的经验是一样的~ 呵呵
碰到一个问题,在看帮助的时候,做一个测试
请在窗口中加入两个DateTimePicker(日期输入框),分别命名为StartDate和EndDate。
然后将BeforeCloses事件代码设为:
Dim sd As WinForm.DateTimePicker
Dim ed As WinForm.DateTimePicker
sd = e.Form.Controls("StartDate")
ed = e.Form.Controls("EndDate")
If sd.Value Is Nothing OrElse ed.Value Is Nothing Then
MessageBox.Show("请输入起始日期和终止日期!","提示", MessageBoxButtons.OK ,MessageBoxIcon.Information)
e.Cancel = True
End If
是的,如果在窗口的属性中的:允许关闭 设为false ,而不在beforeclose中设置e.cancel = true ,就不会出现搂主的问题了~
但在窗口的属性中的:允许关闭 设为false 后,窗口右上角X为何不会‘灰’掉(无法点击),原来的foxtable是可以的!~