| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 414 人关注过本帖
标题:求助:调用类dll问题
只看楼主 加入收藏
wangzhanling
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-11-4
收藏
 问题点数:0 回复次数:0 
求助:调用类dll问题
[DllImport("MF_DLL.DLL")]
        public static extern int mf_Connect();连接读卡器
        [DllImport("MF_DLL.DLL")]     
        public static extern bool mf_Disconnect();断开
        [DllImport("MF_DLL.DLL")]      
        public static extern int mf_ReadRfid(StringBuilder id, StringBuilder type);读卡
        private void button8_Click(object sender, EventArgs e)
        {
            textBox5.Text = "";
            mf_Connect();
            StringBuilder  id1 = new StringBuilder();
            StringBuilder type1 = new StringBuilder();
            mf_ReadRfid(id1, type1);
            this.textBox5.Text =type1 . ToString ();
             this.textBox5.Text =id1 . ToString ();
            mf_Disconnect();
 
        }
这是调用的一个开发包!现在怎么type1是乱码
id1是空的呀
int mf_ReadRfid(unsigned char *id, unsigned char *type);
// 读ID卡卡号
// id=卡号4字节数据,高字节在前
// type=厂商代码
这是说明
麻烦各位给指点一下
搜索更多相关主题的帖子: 读卡器 private public 
2011-11-04 16:59
快速回复:求助:调用类dll问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019207 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved