设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 1199|回复: 0
打印 上一主题 下一主题

[Access本身] 请问这个数字转换代码为什么不能转换小数点后的数字?

[复制链接]
跳转到指定楼层
1#
发表于 2003-9-22 15:09:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Function GetChoice1(ByVal ind As Integer)
        GetChoice1 = Choose(ind + 1, "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖")
    End Function
    Function GetChoice2(ByVal ind As Integer) '注意"byval",按值传递
        Dim tempInt As Integer
        ind = ind - 1
        tempInt = ind \ 4 '取商
        ind = ind Mod 4 '取余
        GetChoice2 = IIf(ind > 0, Choose(ind, "拾", "佰", "仟", "万"), Choose(IIf(tempInt > 2, 1, tempInt), "万", "亿"))
    End Function
    '--------------------------------------------
    '主函数convertNum
    Function ConvertNum(ByVal num As Object) As String
        Dim i As Integer, j As Integer
        Dim tempInt As Integer
        Dim tempStr, ResultStr As String
        tempStr = CStr(num) '转换成字符型
        j = Len(tempStr) '取得长度
        If num < 0 Then
            j = j - 1
            For i = 1 To j '对每个数字进行大写转换
                tempInt = CInt(Mid(tempStr, j - i + 2, 1))
                ResultStr = GetChoice1(tempInt) & GetChoice2(i) & ResultStr
            Next i
            ConvertNum = "(负)" & ResultStr
        Else
            For i = 1 To j '对每个数字进行大写转换
                tempInt = CInt(Mid(tempStr, j - i + 1, 1))
                ResultStr = GetChoice1(tempInt) & GetChoice2(i) & ResultStr
            Next i
            ConvertNum = ResultStr
        End If
    End Function
调用方式为:
dollars = convertNum(val(inputValue))
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-4-29 05:30 , Processed in 0.106999 second(s), 24 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表