C# Winform 和 Motorola MC9090-G 实现
我确实需要帮助将 Motorola MC9090-G 实施到我们的软件应用程序中。 这是我第一次从事这个项目,所以我不知道从哪里开始。 任何帮助将不胜感激。
我已经下载了条码扫描仪的 EMDK (.net v2.4)。 我现在想要完成的只是将 MC9090-G 连接到我的简单测试应用程序,其中只有一个文本框。 扫描条形码,将扫描的条形码显示在文本框中即可!我只是想问是否有人可以给我一个逐步的过程,告诉我如何做到这一点? 我从互联网获得的大部分帮助是在扫描仪中部署应用程序,但我现在不想这样做。 我相信,这样做对我来说将是一个很好的垫脚石! 所以提前致谢! :))
I really need help on implementing Motorola MC9090-G into our software application.
This is my first time to work on this project so I don't know where to start.
Any help would really be appreciated.
I already downloaded the EMDK for the barcode scanner (.net v2.4).
What I'm trying to accomplish now is just to connect the MC9090-G to my simple test application which only have a textbox in it.
Scan a barcode, Display the scanned barcode in the textbox and that's it! I'm just asking is someone could give me a step by step process on how I could do this?
Most of the help that I'm getting from the internet is deploying an application in the scanner which I don't want to do for now.
I believe that doing this would be a great stepping stone for me!
so thanks in advance! :))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您看过摩托罗拉的示例应用程序吗?我发现 EMDK 中包含的示例应用程序在我自己学习时非常有启发性。他们有一些非常基本的示例,可以很明显地看出访问条形码扫描仪硬件所需的几行代码。
Have you looked at Motorola's sample applications? I found the sample applications included with the EMDK very instructive when learning this myself. They have some very basic samples that make it pretty obvious the handful of lines of code that are needed to access the barcode scanner hardware.
欢迎来到我玩过的最令人沮丧的扫描仪。
(给我一个像 HID 键盘一样的哑扫描仪!)
我编写了一个小应用程序,其中包括一个文本框、列表框和一两个按钮。
基本上,扫描仪楔块会将扫描的数据放置在焦点所在的位置。
我遇到的问题之一是知道扫描仪数据何时完成。所以,我添加了一个计时器。
下一个问题,也是我发现没有容易解决的问题,是将数据从扫描仪中取出并传输到真实计算机上,无论是基于Linux还是Windows。
Windows Mobile 设备中心和 Active Sync 需要过多的操作员交互。
我想出的最好的方法是打开超级终端窗口。但是,这一切都是杂凑。
到目前为止,我也没有使用过蓝牙。我的表单代码如下。希望有帮助。这是对其示例之一的修改。我使用的是 EMDK 2.8
Welcome to the most frustrating scanner I have ever played with.
(Give me a dumb scanner that acts like an HID Keyboard any day!)
I wrote a small App that includes a Text Box, List Box, and a button or two.
Basically, the Scanner Wedge will place the scanned data into what ever has focus.
One of the problems I had was knowing when the scanner data was completer. So, I added a timer.
The next problem, and one that I have found no easy solution to is getting the data off the scanner and into a real computer, whether Linux of Windows based.
Windows Mobile Device Center and Active Sync require too much operator interaction.
The best I've come up with is to open a Hyper Terminal Window. But, it's all a kludge.
So, far I've had no luck using Blue Tooth either. My form code is below. Hope it helps. This is a modification to one of their Samples. I am using EMDK 2.8