Author Topic: read data from USB keyboard in vb6  (Read 11465 times)

bh.hemanth

  • Member
  • ***
  • Posts: 1
read data from USB keyboard in vb6
« on: July 07, 2010, 06:19:20 am »
hello all :)
I am trying to write and read from an usb device like USB mouse and USB keyboard.I am using windows APIs in vb6.The problem is like this :(whenever i call the APIs readfile and writefile, it returns 0 and does not return any data.Before reading data,I have successfully called APIs to detect the device name and its pid. Does any one know the reason why the bytes returned is always 0.Any type of help will be highly appreciated

Jan Axelson

  • Administrator
  • Frequent Contributor
  • *****
  • Posts: 3033
    • Lakeview Research
Re: read data from USB keyboard in vb6
« Reply #1 on: July 07, 2010, 08:46:18 am »
Windows 2000 and later have exclusive read/write access to HIDs that are configured as a system keyboards or mice.

The Windows raw input API enables applications to read Input reports when communicating with system mice and keyboards.

http://msdn.microsoft.com/en-us/library/ms645536%28VS.85%29.aspx

Jan