以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [求助]自动改变原来的值。  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=71478)

--  作者:huhu
--  发布时间:2015/7/12 10:26:00
--  [求助]自动改变原来的值。

If e.DataCol.Name = "模块名称" Then
    If e.NewValue Is Nothing Then
        e.DataRow("模块名称") = ""
    Else
        e.DataRow("模块名称") = "S-" & e.NewValue
    End If
End If

 

这段代码有错?希望输入aaa,自动改为S-aaa。


--  作者:大红袍
--  发布时间:2015/7/12 10:29:00
--  

Datacolchanging 事件,写代码

 

If e.DataCol.Name = "模块名称" Then
    If e.NewValue IsNot Nothing Then
        e.NewValue = "S-" & e.NewValue
    End If
End If