下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、VBA使用EXCEL读取身份证阅读器获得证件信息本代码实现了在EXCEL中调用精伦身份证阅读器控件(可在网上百度精伦二次开发包,里面有)读取身份证信息,可根据实际情况修改相关代码,源文件可在EXCELhome网站搜索下载。 Private Declare Function InitComm Lib "Sdtapi.dll" (ByVal iPort As Integer) As Integer Private Declare Function CloseComm Lib "Sdtapi.dll" () As Integer Private Declare
2、 Function Authenticate Lib "Sdtapi.dll" () As Integer Private Declare Function ReadBaseInfos Lib "Sdtapi.dll" (ByVal iname As String, ByVal isex As String, ByVal folk As String, ByVal birthday As String, ByVal code As String, ByVal addr As String, ByVal agency As String, ByVal st
3、artdate As String, ByVal enddate As String) As Integer Sub 启动_Click() 'On Error Resume Next Dim n, ret, nLen Dim iname As String * 31 Dim isex As String * 3 Dim folk As String * 10 Dim code As String * 19 Dim addr As String * 71 Dim birthday As String * 9 Dim startdate As String * 9 Dim enddate
4、As String * 9 Dim agency As String * 31 Dim Msg As String * 300 Dim Msg1 As String * 256 Dim IINSNDN As String * 64 Dim SAMID As String * 36 Dim LenT As Integer ret = InitComm("1001") If Err Then Err.Clear MsgBox "端口错误", vbOKOnly, "提示" Exit Sub End If ret = Authenticate
5、() If (ret) Then ' ' MsgBox "找到卡,正在读卡." ' ret = MsgBox("找到卡,正在读卡.", vbOKOnly + vbInformation, "提示") ret = ReadBaseInfos(iname, isex, folk, birthday, code, addr, agency, startdate, enddate) If (ret) Then ' MsgBox "读卡成功!" '姓名 Range("a1&q
6、uot;) = Trim(iname) '性别 Range("a2") = Trim(isex) '民族 Range("a3") = Trim(folk) '出生年 Range("a4") = Left(Trim(birthday), 4) + "年" + Mid(Trim(birthday), 5, 2) + "月" + Mid(Trim(birthday), 7, 2) + "日" Range("b4") = Trim(birt
7、hday) '住址 Range("a5") = Trim(addr) '公民身份号码 Range("a6") = Trim(code) '签发机关 Range("a7") = Trim(agency) '有效期限 Range("a8") = Trim(enddate) If Trim(enddate) = "长期" Then Range("b8") = Left(Trim(startdate), 4) + "." + Mid
8、(Trim(startdate), 5, 2) + "." + Mid(Trim(startdate), 7, 2) + "-长期" Else Range("b8") = Left(Trim(startdate), 4) + "." + Mid(Trim(startdate), 5, 2) + "." + Mid(Trim(startdate), 7, 2) + "-" + Left(Trim(enddate), 4) + "." + Mid(Trim(enddate), 5, 2) + "." + Mid(Trim(enddate), 7, 2) End If '显示照片 'Pic.Picture = LoadPicture(App.Path + "phot
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024年市场营销合作协议
- 2024年定制化企业内训合同
- 2024年个性化医疗健康数据共享平台合作协议
- 2024年婴儿奶粉区域代理协议
- 2024年大型货物运输合同
- 2024年定制版:基因组测序与分析服务合同
- 2024年并购项目持续监管合同
- (2024版)大运河沿岸生态旅游开发合同(2024版)
- 2024年大气污染防控合作协议
- 2024年工程信息咨询与技术服务合同
- 医药经理的资源整合能力
- 越南整形行业趋势分析
- 主要领导与分管领导廉政谈话记录
- 噪声的基本知识和光电探测器简介
- 《神秘的楼兰古国》课件
- 蒸汽锅炉可行性方案
- 煤焦酚-安全技术说明书MSDS
- 【课件】第二课时光合作用的原理和应用课件-2023-2024学年高一上学期生物人教版(2019)必修1
- 焚烧炉RTO操作规程
- 数据库安全事件响应机制
- 涉侨法律知识讲座
评论
0/150
提交评论