以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  登录成功后登录窗口关闭还有边框显示怎么解决哦(已解决谢谢版主)  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=105447)

--  作者:run010501
--  发布时间:2017/8/19 16:02:00
--  登录成功后登录窗口关闭还有边框显示怎么解决哦(已解决谢谢版主)

此主题相关图片如下:qq图片20170819154657.png
按此在新窗口浏览图片

登录成功跳转主窗口    登录窗口的边框还在有  不知道怎么解决了

代码
Dim UserName As String = e.Form.Controls("TextBox1").Value
Dim dr As DataRow
If UserName = "" Then
      MessageBox.Show("请输入用户账号!!!!","错误提示",MessageBoxButtons.OKCancel,MessageBoxIcon.Error)
End If
dr = _UserTable.SQLFind("用户账号 = \'" & UserName & "\'") 
If  dr Is Nothing  Then
     Messagebox.show("此用户不存在!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
    Return
     
End If
If e.Form.Controls("TextBox2").Value = dr("用户密码") Then
    _UserName = UserName
    _UserGroup = dr("用户组别") 
    _UserXm = dr("用户姓名")
   \' MessageBox.Show("用户登录成功!!!!!!!!!!!","提示",MessageBoxButtons.OKCancel,MessageBoxIcon.Question)
    e.Form.Close()
    Forms("主窗口").open
Else
    Messagebox.show("密码错误!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If
[此贴子已经被作者于2017/8/19 16:19:08编辑过]

--  作者:有点蓝
--  发布时间:2017/8/19 16:10:00
--  
都是模式窗口吧,参考:http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&Id=90998
--  作者:run010501
--  发布时间:2017/8/19 16:14:00
--  
嗯  是模式窗口 按照说明做的
--  作者:有点蓝
--  发布时间:2017/8/19 16:17:00
--  
看2楼,还有问题上传实例说明