Rss & SiteMap

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

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

标题:如何将A列的小写数字在B列转换为中文大写数字~

1楼
hs0309 发表于:2008/12/18 9:27:00
我在表达式的公式里面设置CUMoney([A])提示错误~

另外,能在以后的版本中把错误提示变成中文的么? 我是学习俄语的,看这个英文提示太费尽了~
2楼
狐狸爸爸 发表于:2008/12/18 9:36:00

表达式不能使用CUMoney函数的。

删除B列,然后新增一个数据列,命名为B。

在表的DataColChanged事件加入代码:

If e.DataCol.Name = "A" Then
   if e.DataRow.IsNull("A") Then

       e.DataRow("B") = Nothing

   Else

      e.DataRow("B") = CUMoney(e.DataRow("A"))
   End If
End If

3楼
hs0309 发表于:2008/12/18 9:39:00
谢谢 看来我的易表后遗症还很多呀
4楼
smileboy 发表于:2008/12/18 9:41:00
datachanged事件:
If e.IsFocusCell Then
If
e.DataCol.Name = "A列" Then
    If e.DataRow.IsNull("A列") Then 
        e.
DataRow("B列") = Nothing 
   
Else
        e.DataRow("B列") = CUMoney(e.DataRow("A列"))
    End
If
End
If
End If
共4 条记录, 每页显示 10 条, 页签: [1]

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

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