以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]文本框 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=143396) |
-- 作者:江南小镇 -- 发布时间:2019/11/23 8:36:00 -- [求助]文本框 老师,文本框1文本框2任何一个是空的按钮代码就不工作并提示文本框是空的。 If e.Form.Controls("TextBox1").text > "" Then msgbox("不是空") End If
|
-- 作者:有点蓝 -- 发布时间:2019/11/23 8:42:00 -- If e.Form.Controls("TextBox1").text = "" Then msgbox("TextBox1是空") return End If If e.Form.Controls("TextBox2").text = "" Then msgbox("TextBox2是空") return End If …… 其它代码 |