| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx

C# Winform 中无焦点状态下获取键盘输入或者 USB 扫描枪数据 64

0
HTML C/C++ Go Winform ci 3842 次浏览

最近在做个国外很火的项目,碰到一些问题,下面的代码老是报错,哪位有经验的大神帮我看看~

扫描器是优力科的MS3398下面是扫描器的参数API http://www.posunitech.com/products_detail/productId=83.html

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
namespace Common
{
   public class BardCodeHooK
   {
       public delegate void BardCodeDeletegate(BarCodes barCode);
       public event BardCodeDeletegate BarCodeEvent;
       public struct BarCodes
       {
           public int VirtKey;//虚拟吗
           public int ScanCode;//扫描码
           public string KeyName;//键名
           public uint Ascll;//Ascll
           public char Chr;//字符
           public string BarCode;//条码信息
           public bool IsValid;//条码是否有效
           public DateTime Time;//扫描时间
       }
       private struct EventMsg
       {
           public int message;
           public int paramL;
           public int paramH;
           public int Time;
           public int hwnd;
       }
       [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
       private static extern int SetWindowsHookEx(int idHook, HookProc lpfn, IntPtr hInstance, int threadId);
       [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
       private static extern bool UnhookWindowsHookEx(int idHook);
       [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
       private static extern int CallNextHookEx(int idHook, int nCode, Int32 wParam, IntPtr lParam);
       [DllImport("user32", EntryPoint = "GetKeyNameText")]
       private static extern int GetKeyNameText(int IParam, StringBuilder lpBuffer, int nSize);
       [DllImport("user32", EntryPoint = "GetKeyboardState")]
       private static extern int GetKeyboardState(byte[] pbKeyState);
       [DllImport("user32", EntryPoint = "ToAscii")]
       private static extern bool ToAscii(int VirtualKey, int ScanCode, byte[] lpKeySate, ref uint lpChar, int uFlags);
       delegate int HookProc(int nCode, Int32 wParam, IntPtr lParam);
       BarCodes barCode = new BarCodes();
       int hKeyboardHook = 0;
       string strBarCode = "";
       private int KeyboardHookProc(int nCode, Int32 wParam, IntPtr lParam)
       {
           if (nCode == 0)
           {
               EventMsg msg = (EventMsg)Marshal.PtrToStructure(lParam, typeof(EventMsg));
               if (wParam == 0x100)//WM_KEYDOWN=0x100
               {
                   barCode.VirtKey = msg.message & 0xff;//虚拟吗
                   barCode.ScanCode = msg.paramL & 0xff;//扫描码
                   StringBuilder strKeyName = new StringBuilder(225);
                   if (GetKeyNameText(barCode.ScanCode * 65536, strKeyName, 255) > 0)
                   {
                       barCode.KeyName = strKeyName.ToString().Trim(new char[] { ' ', '\0' });
                   }
                   else
                   {
                       barCode.KeyName = "";
                   }
                   byte[] kbArray = new byte[256];
                   uint uKey = 0;
                   GetKeyboardState(kbArray);
                   if (ToAscii(barCode.VirtKey, barCode.ScanCode, kbArray, ref uKey, 0))
                   {
                       barCode.Ascll = uKey;
                       barCode.Chr = Convert.ToChar(uKey);
                   }
                   TimeSpan ts = DateTime.Now.Subtract(barCode.Time);
                   if (ts.TotalMilliseconds > 50)
                   {
                       strBarCode = barCode.Chr.ToString();
                   }
                   else
                   {
                       if ((msg.message & 0xff) == 13 && strBarCode.Length > 3)
                       {
                           barCode.BarCode = strBarCode;
                           barCode.IsValid = true;
                        }
                        strBarCode += barCode.Chr.ToString();
                    }
                    barCode.Time = DateTime.Now;
                    if (BarCodeEvent != null) BarCodeEvent(barCode);//触发事件
                    barCode.IsValid = false;
                }
            }
            return CallNextHookEx(hKeyboardHook, nCode, wParam, lParam);
        }
        //安装钩子
        public bool Start()
        {
            if (hKeyboardHook == 0)
            {
                //WH_KEYBOARD_LL=13
                hKeyboardHook = SetWindowsHookEx(13, new HookProc(KeyboardHookProc), Marshal.GetHINSTANCE(Assembly.GetExecutingAssembly().GetModules()[0]), 0);
            }
            return (hKeyboardHook != 0);
        }
        //卸载钩子
        public bool Stop()
        {
            if (hKeyboardHook != 0)
            {
                return UnhookWindowsHookEx(hKeyboardHook);
            }
            return true;
        }
    }
}
页面中用法:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Common
{
    public partial class FrmMain : Form
    {
        BardCodeHooK BarCode = new BardCodeHooK();
        public FrmMain()
        {
            InitializeComponent();
            BarCode.BarCodeEvent += new BardCodeHooK.BardCodeDeletegate(BarCode_BarCodeEvent);
        }
        private delegate void ShowInfoDelegate(BardCodeHooK.BarCodes barCode);
        private void ShowInfo(BardCodeHooK.BarCodes barCode)
        {
            if (this.InvokeRequired)
            {
                this.BeginInvoke(new ShowInfoDelegate(ShowInfo), new object[] { barCode });
            }
            else
            {
                textBox1.Text = barCode.KeyName;
                textBox2.Text = barCode.VirtKey.ToString();
                textBox3.Text = barCode.ScanCode.ToString();
                textBox4.Text = barCode.Ascll.ToString();
                textBox5.Text = barCode.Chr.ToString();
                textBox6.Text = barCode.IsValid? barCode.BarCode : "";//是否为扫描枪输入,如果为true则是 否则为键盘输入
                textBox7.Text += barCode.KeyName;
                //MessageBox.Show(barCode.IsValid.ToString());
            }
        }
        //C#中判断扫描枪输入与键盘输入
        //Private DateTime _dt = DateTime.Now;  //定义一个成员函数用于保存每次的时间点
        //private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        //{
        //    DateTime tempDt = DateTime.Now;          //保存按键按下时刻的时间点
        //    TimeSpan ts = tempDt .Subtract(_dt);     //获取时间间隔
        //    if (ts.Milliseconds > 50)                           //判断时间间隔,如果时间间隔大于50毫秒,则将TextBox清空
        //        textBox1.Text = "";
        //    dt = tempDt ;
        //}
        void BarCode_BarCodeEvent(BardCodeHooK.BarCodes barCode)
        {
            ShowInfo(barCode);
        }
        private void FrmMain_Load(object sender, EventArgs e)
        {
            BarCode.Start();
        }
        private void FrmMain_FormClosed(object sender, FormClosedEventArgs e)
        {
            BarCode.Stop();
        }
        private void textBox6_TextChanged(object sender, EventArgs e)
        {
            if (textBox6.Text.Length > 0)
            {
                MessageBox.Show("条码长度:" + textBox6.Text.Length + "\n条码内容:" + textBox6.Text, "系统提示");
            }
        }
    }
}

24个答案

0

If someone based an Internet meme on you, it would have impeccable grammar.https://housecleaningspokanewa.com

0

I really loved it here but are there any recent updates? Thanks  https://hairextensionsspokanewa.com

0

 Nice blog and absolutely outstanding.  You can do something much better but i still say this perfect. Keep trying for the best.https://waxingsacramento.com

0

我曾经认为我会遇到那里的人 homehealthcaresanantoniotexas.com

0

Great! didnt know about this before, I had doubts but thanks for clarifying. Jenny

0

This is such a great help! I've been struggling for days already, soo glad i found this site! thanks for sharing! Jenny

0

I have express a few of the articles on your website now, and I really like your style of blogging. I added it to my favorite’s blog site list and will be checking back soon cheap dental implants honolulu

0

thank you for this! really appreciate you doing this dental implant cost sioux falls

0

INTERESTING BLOG POST ADMIN! KEEP POSTING MORE! https://hairextensionsforthworth.com

0

Didn't know that was possible

small business loans yuma

0

这是很好的信息分享,我有更多的数据用于我的工作 ทางเข้าjoker

0

Pg สุดยอดเกม xopg.net ทำเงินออนไลน์ reeffutures2018 แจ็คพอตจัดเต็ม โปร pg แจกหนักทุกช่วงเวลา mavoixtavoie ด้วยเทคนิคน่าสนใจที่เราได้ลองไปค้นคว้ามากฝากผู้เล่นที่ชื่นชอบ สมัคร pg และคลั่งไคล้ที่จะทำเงินกับสล็อตออนไลน์นี้ รับรองเลยว่า herbalpertpresents คุ้มและเข้าใกล้รางวัลแจ็คพอตมากที่สุดแน่นอน PG SLOT รางวัลแจ็คพอตมีมาตลอดทุกช่วงเวลา northbristol ซึ่งขึ้นอยู่ที่ดวงอีกด้วยส่วนหนึ่งหากผู้เล่นรู้จักประมาณตน gclub ไม่โลภจนเกินไปกำไรจะหนีไปไหนได้ ทดลองเล่น pg เพื่อเป็นส่วนหนึ่งกับเรา เทคนิคสล็อต พร้อมรางวัลโบนัส และโปรโมชั่นสุดปังอีกมาเกม essentialsforasoul ที่รอคุณอยู่ เกมเดิมพัน กำไรเยอะแจ็คพอตแตกรัวๆ สล็อต PG ทำอย่างไร ไปดูกันเลย

0

And can i differentiate among the scanner and a usb keyboard? (scanner is a concealed device) it allows you to receive both the Approval Software in Dubai enter (what “keys” are pressed if it mimics a “keyboard”) as well distinguish which device it got here from.

0

AMBBET แน่นอนการเดินทางโดยไร้จุดหมาย เว็บคาสิโน ทำให้เราเสียเวลาเป็นอย่างมาก ambbet โปร ผู้เล่นควรตั้งเป้าหมายว่า เกมสล็อต จะได้กำไรเท่าไหร่ถึงจะพอ สมัคร amb ซึ่งวิธีการตั้งเป้าหมายนั้น reeffutures2018 เราจะกำหนดจากความเป็นจริง gclub โดยคำนวณจากเงินทุนที่มี AMB สำหรับเกมสล็อตเอากำไรสัก บาคาร่า 40%-50% ของ mavoixtavoie ทุนที่มีก็เพียงพอแล้ว หากอยาก xopg.net ได้เยอะต้องให้เข้าเกมโบนัส northbristol หรือรางวัลแจ็คพอตเท่านั้น เกมคาสิโน ถ้าเป็นการจ่ายปกติ herbalpertpresents ไม่ควรเกินนี้จ้า

0

스포츠토토 안전놀이터 슬롯사이트 토토사이트 주소 토토 뱃사공 bebe40.com 스포츠중계   중국대만 축구분석 류현진 선발 일정 마이프로틴 셀트리온주가 토토사이트 롤링 파워볼게임 카지노쿠폰 월드카지노 안전놀이터 모음

0

我错了 的确都赋值了 但仍然有问题 需要保证程序和外部都没有焦点 否则又输出去了 all slot

0

that's good information to share, I've got more data for my work scribble io

0

Aww, was that important?

0

เราเป็นผู้ให้บริการที่มีตัวเกมส์สล็อตให้เลือกเล่นจำนวนมากเพราะเรามีการพัฒนาเกมใหม่เพื่อเอาใจและตอบสนองความต้องการของผู้เล่นตลอดเวลาเราได้เลือกเกมยอดนิยมจากผู้เล่นมาส่วนหนึ่ง เพื่อเป็นแนวทางสำหรับผู้เล่นเกมหน้าใหม่หรือเพื่อเปิดทางให้กับผู้เล่นเกมส์สล็อตเก่า ๆ ที่อาจจะกำลังมองหาเกมส์ใหม่ ๆ เล่นเกมเรามีเว็บที่ดีที่สุดในตอนนี้มาแนะนำ
https://www.xosuperslot.com
https://www.xopgth.com/
https://xojoker.com/
https://www.xoautobet.com/
https://www.xogclubth.com/

0

This is a great suggestion sir

1 2