Rss & SiteMap

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

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

标题:自定义样式

1楼
g1j2h3 发表于:2024/9/25 14:10:00
请教大师,下边这段代码错在哪里,如果备注列含有“作废”,那么所在行样式将显示“作废”样式
With Tables("接单登记")
    Dim r As Integer
    r = .Find("作废", 0, "备注", False, False, True)
    If r > - 1 Then '如果找到符合条件的行
        .Position = r '则选择该行
        e.Style = "作废"
    End If 
End With
2楼
有点蓝 发表于:2024/9/25 14:48:00
先看看:http://www.foxtable.com/webhelp/topics/0604.htm,再看看:http://www.foxtable.com/webhelp/topics/2925.htm

drawcell事件

    If e.row("备注") = "作废" Then '如果找到符合条件的行
        e.Style = "作废"
    End If 
3楼
g1j2h3 发表于:2024/9/25 15:57:00
可能我没说清楚,备注列内有多个内容,譬如:“含运费  作废”,如何写代码,麻烦老师指教
[此贴子已经被作者于2024/9/25 15:58:16编辑过]
4楼
有点蓝 发表于:2024/9/25 16:03:00
http://www.foxtable.com/webhelp/topics/1422.htm

If e.row.isnull("备注")=false andalso e.row("备注").Contains("作废") Then
5楼
g1j2h3 发表于:2024/9/25 16:06:00
谢谢老师
共5 条记录, 每页显示 10 条, 页签: [1]

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

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