Foxtable(狐表)用户栏目专家坐堂 → 窗口关闭后控件错误问题


  共有7635人关注过本帖树形打印复制链接

主题:窗口关闭后控件错误问题

帅哥哟,离线,有人找我吗?
czy
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信 一级勋章 三级勋章 二级勋章
等级:超级版主 帖子:6318 积分:33957 威望:0 精华:10 注册:2008/8/31 20:56:00
  发帖心情 Post By:2013/3/9 21:46:00 [显示全部帖子]

这个问题好像要老六来解决。

 

现在只好先判断一下吧。

 

Dim tab As WinForm.TabControl = e.Form.Controls("TabControl1")
If e.Form.ExistControl("Button1")
    Dim qrxg As WinForm.Button = e.Form.Controls("Button1")
    If tab.SelectedIndex = 1 Then
        If qrxg.Visible = True Then
            MessageBox.Show("请先确认修改后再离开界面!","错误提示", MessageBoxButtons.OK ,MessageBoxIcon.Information)
            e.Cancel = True
        End If
    End If
End If


 回到顶部