Foxtable(狐表)用户栏目专家坐堂 → [求助]textbox清空问题


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

主题:[求助]textbox清空问题

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


加好友 发短信
等级:幼狐 帖子:154 积分:1174 威望:0 精华:0 注册:2015/10/23 19:11:00
[求助]textbox清空问题  发帖心情 Post By:2016/11/7 15:44:00 [只看该作者]

我在textbox的valuechanged中写的
Dim gh As WinForm.TextBox = e.Form.Controls("TextBox1")
Dim xm As WinForm.TextBox = e.Form.Controls("TextBox2")
Dim gw As WinForm.TextBox = e.Form.Controls("TextBox3")
Dim pbx As WinForm.PictureBox = e.Form.Controls("PictureBox1")
Dim str As String = ("代号 = '" & gh.Value & "'")
Dim dr As DataRow = DataTables("工号表").Find(str)    
If dr IsNot Nothing Then           
pbx.Image = GetImage(dr("照片"))
gh.value = dr("代号")
        xm.Value = dr("姓名")
        gw.Value = dr("岗位")
 Else
        MessageBox.Show("对不起,你查找的人员不存在!")
End If
我想做一个清空按钮,清除这些查询条件,我写的e.Form.Controls("TextBox1").value = nothing等等
一点就弹出("对不起,你查找的人员不存在!"),我该怎么让它直接清空,不弹出("对不起,你查找的人员不存在!")?
一下蒙住了。。。。。

 回到顶部
帅哥哟,离线,有人找我吗?
有点蓝
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110574 积分:562760 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2016/11/7 15:55:00 [只看该作者]

Dim gh As WinForm.TextBox = e.Form.Controls("TextBox1")
Dim xm As WinForm.TextBox = e.Form.Controls("TextBox2")
Dim gw As WinForm.TextBox = e.Form.Controls("TextBox3")
Dim pbx As WinForm.PictureBox = e.Form.Controls("PictureBox1")
If gh.Value > "" Then
    Dim str As String = ("代号 = '" & gh.Value & "'")
    Dim dr As DataRow = DataTables("工号表").Find(str)
    If dr IsNot Nothing Then
        pbx.Image = GetImage(dr("照片"))
        gh.value = dr("代号")
        xm.Value = dr("姓名")
        gw.Value = dr("岗位")
    Else
        MessageBox.Show("对不起,你查找的人员不存在!")
    End If
End If

 回到顶部
帅哥哟,离线,有人找我吗?
121027568
  3楼 | QQ | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:154 积分:1174 威望:0 精华:0 注册:2015/10/23 19:11:00
  发帖心情 Post By:2016/11/7 15:57:00 [只看该作者]

谢谢老师,一下蒙住了。。。。

 回到顶部