设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用于将数字换汉字大写数字的函数

1970-1-1 08:00| 发布者: goodorbad/Benja| 查看: 1970| 评论: 0

正文:
'用于将数字换汉字大写数字的函数
Function zhh(mrmbze)
Dim S_1 As String
Dim S_2 As String
Dim S_4 As String
Dim s_5 As String
Dim S_6 As String
Dim S_7 As String
Dim I As Integer
Dim tn As Single

S_1 = "零壹贰叁肆伍陆柒捌玖"
S_2 = "仟佰拾万仟佰拾元角分"


Option Compare Database
Option Explicit

Function CWord(myNumber As Double) As String
Dim str1 As String, str2 As String, str3 As String, str4 As String, str5 As String, str6 As String, str7 As String
Dim I As Integer, J As Integer, K As Integer, L As Integer
str1 = "仟佰拾亿仟佰拾万仟佰拾元角分"
str2 = "元角分"
str3 = "零壹贰叁肆伍陆柒捌玖"
str4 = Left(Trim(Format(myNumber, "0.00")), Len(Format(myNumber, "0.00")) - 3) & Right(Trim(Format(myNumber, "0.00")), 2)
str5 = Right(Trim(Format(myNumber, "0.00")), 2)
str6 = Right(str1, Len(str4))
For I = 1 To Len(str4)
K = CDbl(Mid(str4, I, 1))
str7 = str7 & Mid(str3, K + 1, 1) & Mid(str6, I, 1)
Next I
CWord = str7 & "整"
End Function
Function ctest()
MsgBox CWord(120001.03)
End Function



S_4 = Ltrim(Str(Nz(Int(mrmbze * 100))))

If Len(S_4) > 10 And mrmbze > 0 And mrmbze < 99999999.99 Then

  tn = Int(mrmbze * 100) / 100
  
    If mrmbze - tn >= 0.005 Then

       tn = tn + 0.01

    End If

  S_4 = Ltrim(Str(tn * 100))


  
End If

If Len(S_4) > 10 Or mrmbze < 0 Then

zhh = "ERROR!!! The number to be transferred CANNOT be negative and must be less than 99999999.99"

Else

S_4 = String(10 - Len(S_4), " ") + S_4
I = 1
zhh = ""
Do While I <= 10
    s_5 = Mid(S_4, I, 1)
    If s_5 <> " " Then
        S_6 = Mid(S_1, Val(s_5) + 1, 1)
        S_7 = Mid(S_2, I, 1)
        If s_5 = "0" And I <> 4 And I <> 8 Then
            S_7 = ""
            
        End If
        If (Mid(S_4, I, 2) = "00") Or (s_5 = "0" And (I = 4 Or I = 8 Or I = 10)) Then
            S_6 = ""
            
        End If
        zhh = zhh + S_6 + S_7
        
        If Mid(S_4, I, 1) = "0" And Mid(S_4, I + 1, 1) <> "0" And (I = 4 Or I = 8) Then
            zhh = zhh + "零"
        End If
    End If
    I = I + 1
Loop
If s_5 = "0" Then
    zhh = zhh + "整"
End If
End If

If zhh Like "*" & "元零" & "*" & "角" & "*" Then
    zhh = Replace(zhh, "元零", "元")
End If
        

End Function


最新评论

相关分类

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

GMT+8, 2025-4-4 05:17 , Processed in 0.076204 second(s), 17 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

返回顶部