Public Function GetDX(d As Integer) As String
Dim str As String
Select Case d
'壹、贰、叁、肆、伍、陆、柒、捌、玖、拾
Case 0
str = "零"
Case 1
str = "壹"
Case 2
str = "贰"
Case 3
str = "叁"
Case 4
str = "肆"
Case 5
str = "伍"
Case 6
str = "陆"
Case 7
str = "柒"
Case 8
str = "捌"
Case 9
str = "玖"
End Select