Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共4 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:删除字符串中的指定内容

1楼
1234567 发表于:2024/8/27 9:37:00

Dim dr As DataRow

With DataTables("目录树过滤")

    dr = .Find("表名 = '工艺内容' AND 列名 = '加工人'", "", 0)

End With

Dim txt2 As String = dr("过滤条件")

Dim tr As Row

If e.Form.DropTable IsNot Nothing Then

    tr = e.Form.DropTable.Current

    Dim txt1 As String = tr("加工人")

    txt1 = """, '" & txt1 & "'"""

   ' msgbox(txt1)

End If

txt2 = txt2.Replace(txt1, "")


图片点击可在新窗口打开查看此主题相关图片如下:6.png
图片点击可在新窗口打开查看
2楼
有点蓝 发表于:2024/8/27 9:45:00
定义的变量都有使用范围,在if里面定义的变量,在if外面是不能使用的

If e.Form.DropTable IsNot Nothing Then

    tr = e.Form.DropTable.Current

    Dim txt1 As String = tr("加工人")

    txt1 = """, '" & txt1 & "'"""

   ' msgbox(txt1)

txt2 = txt2.Replace(txt1, "")

End If


3楼
1234567 发表于:2024/8/27 12:24:00
Dim dr As DataRow
With DataTables("目录树过滤")
    dr = .Find("表名 = '工艺内容' AND 列名 = '加工人'", "", 0)
End With
Dim txt2 As String = dr("过滤条件")
Dim txt1 As String = "1"
txt1 = """,'" & txt1 & "'"""
OutPut.Show(txt1)'                      命令窗口执行结果",'1'" 
txt2 = txt2.Replace(",'1'" , "")     用命令窗口执行结果数据代入,可以删除掉目录过滤表中数据
txt2 = txt2.Replace(txt1, "")       用变量名代入,不能删除目录过滤表数据,这是为什么?
dr("过滤条件") = txt2
4楼
有点蓝 发表于:2024/8/27 13:39:00
txt1 = ",'" & txt1 & "'"
共4 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02344 s, 2 queries.