[分享][原创]字符与Charcode互换
时 间:2007-12-10 07:28:57
作 者:cuxun ID:274 城市:肇庆
摘 要:字符与Charcode互换。
正 文:
'==========================================
'-函数名称: CharToCharcode
'-功能描述: 字符转CHARCODE
'-输入参数说明: 参数1:CharName 字符串
' 参数2:ShowType 显示类型
'-返回参数说明: Charcode值
'-使用语法示例: CharToCharcode("我是真的真的很爱你",3)
'-参考:
'-使用注意:
'-兼容性: 2000,XP,2003
'-作者: 何勇, Email:Cuxun@qq.com ,QQ:100810401
'-更新日期: 2007-9-9
'===========================================
Dim intLen As Integer
Dim i As Integer
On Error GoTo Err:
intLen = Len(CharName)
If intLen = 0 Then
MsgBox "没有字符需要转换!", vbCritical
Exit Function
End If
For i = 1 To intLen
Select Case ShowType
Case 1 ''只显示CharCode值
CharToCharcode = CharToCharcode & " " & AscW(Mid(CharName, i, 1))
Case 2 ''分别显示相关的CharCode值
CharToCharcode = CharToCharcode & Mid(CharName, i, 1) & " (" & AscW(Mid(CharName, i, 1)) & ") "
Case 3 ''显示字符转换的内容
CharToCharcode = CharToCharcode & " Chrw(" & AscW(Mid(CharName, i, 1)) & ") "
''最后一个不加&字符
If i < intLen Then CharToCharcode = CharToCharcode & "&"
Case 4 ''分别显示相关的字符及CharCode值
CharToCharcode = CharToCharcode & Mid(CharName, i, 1) & " Chrw(" & AscW(Mid(CharName, i, 1)) & ") "
End Select
Next
Err:
If Err.Number <> 0 Then MsgBox "出错了,错误代码:" & Err.Number & ",错误说明:" & Err.Description, vbInformation
Exit Function
End Function
Public Function CharcodeToChar(ByVal StrCharcode As String, Optional strBreak As String = " ", Optional ShowType As Integer = 1)
'================================================
'-函数名称: CharcodeToChar
'-功能描述: CHARCODE转字符
'-输入参数说明: 参数1:StrCharcode 以空格分隔的数字字符串
' 参数2:strBreak &nbs
Access软件网QQ交流群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- Access对子窗体数据进行批...(10.30)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
- 【Access选项卡示例】Ac...(09.09)
学习心得
最新文章
- Access快速开发平台--对上传...(11.22)
- Access快速开发平台企业版--...(11.18)
- 不会用多表联合查询,多表查询没结果...(11.16)
- 【案例分享】主键字段值含有不间断空...(11.16)
- Access快速开发平台--后台D...(11.14)
- 微软Access邀测新Monaco...(11.12)
- Access列表框左右互选、列表框...(11.11)
- 高效率在导入数据前删除记录(11.10)
- Access报价单转订单示例代码(11.08)
- Access系统自带的日期选择器不...(11.08)