以文本方式查看主题
- Foxtable(狐表) (http://foxtable.net/bbs/index.asp)
-- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2)
---- 代码优化 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=14334)
|
-- 作者:bm
-- 发布时间:2011/11/16 13:10:00
-- 代码优化
Dim txt As String = e.Form.Controls("ComboBox1").Text If txt Like "*其它*" Or txt Like "*代付*" Or txt Like "*过夜*" Or txt Like "*桥路*" Then
改成不包含*运费*
[此贴子已经被作者于2011-11-16 13:50:19编辑过]
|
-- 作者:bm
-- 发布时间:2011/11/16 14:06:00
-- 自己顶一下。
自己顶一下。
|
-- 作者:czy
-- 发布时间:2011/11/16 14:16:00
--
Not ([某列] Like \'*运费\'*\')
|
-- 作者:yangming
-- 发布时间:2011/11/16 14:23:00
--
If txt Not Like "*运费*" Then
|
-- 作者:bm
-- 发布时间:2011/11/16 14:52:00
-- 出错了
出错了 此主题相关图片如下:截图23.jpg
|
-- 作者:yangming
-- 发布时间:2011/11/16 15:12:00
--
If Not(txt Like "*运费*") Then
|
-- 作者:程兴刚
-- 发布时间:2011/11/16 16:37:00
--
还可以这样变通一下:
if txt1.Contains("运费") = false
|
-- 作者:czy
-- 发布时间:2011/11/16 17:01:00
--
很简单的问题非得搞的这么复杂,如果上传文件或贴出完整的代码两分钟就能结贴。
我还以为用来做筛选呢。
[此贴子已经被作者于2011-11-16 17:04:43编辑过]
|