Foxtable(狐表)用户栏目专家坐堂 → For Each


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

主题:For Each

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


加好友 发短信
等级:超级版主 帖子:111471 积分:567443 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2019/4/15 20:20:00 [显示全部帖子]

Dim AAAA As DialogResult
AAAA = MessageBox.Show("是否将该行内容导入上单系统 ?" , "提示" , MessageBoxButtons.YesNo , MessageBoxIcon.Question)
If AAAA = DialogResult.Yes Then
    Dim str As String = e.Form.Controls("TextBox1").value
    Dim isfind As Boolean
    For Each r As Row In Tables("电台广告忌讳词设置表").rows
        If r("忌讳词") > "" AndAlso str.Contains(r("忌讳词")) Then
            isfind = True
            MessageBox.Show("该内容存在忌讳词 [" & r("忌讳词") & " ],请修改后导入!")
        End If
    Next
    If isfind =False Then
        Dim BBBB As String = e.Form.Controls("TextBox2").value
        DataTables("电台广告单号明细表").ReplaceFor("内容审核", True , "[单号] = '" & BBBB & "'")
        DataTables("电台广告单号明细表").Save()
        DataTables("电台广告单号明细表").Load()
    End If
End If

 回到顶部