Check reader in c#

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • haiminnu
    New Member
    • Nov 2008
    • 15

    Check reader in c#

    i am working with c# web application(vis ual studio 2008) and i am using one check reader(MICR) in my project.To activate this check reader code is written in vc++(ocx).how i can access methods from this vc++ project to my c# pages???Is need any vb script????
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    Once added to your project the OCX should appear in your toolbox.
    From there just drag/drop it to a form, set properties and subscribe to events like any other component. I do the same thing with a magcard reader OCX supplied by the manufacturer.

    Comment

    • SvenV
      New Member
      • Oct 2008
      • 50

      #3
      Yea just right click on references in Solution Explorer - Add reference - Browse tab
      or if you registered the COM , the COM tab
      Then you can just instantiate the COM component

      Comment

      Working...