swab card

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hamzeh83
    New Member
    • Jul 2008
    • 7

    swab card

    Hello,,
    How can when wipe the card my form to be focus on screen.

    Thanks
  • madankarmukta
    Contributor
    • Apr 2008
    • 308

    #2
    Originally posted by hamzeh83
    Hello,,
    How can when wipe the card my form to be focus on screen.

    Thanks
    Could you pls elaborate more on what you want to say..?

    Thanks!

    Comment

    • hamzeh83
      New Member
      • Jul 2008
      • 7

      #3
      Ok madankarmukta ,,
      I have card reader and i want when swap the card ,write on my program even it not focus on screen,,
      i hope clear to u what i want

      Thanks

      Comment

      • tlhintoq
        Recognized Expert Specialist
        • Mar 2008
        • 3532

        #4
        my form to be focus on screen
        Code:
        myForm.TopMost = true;
        myForm.Focus();

        Comment

        • Frinavale
          Recognized Expert Expert
          • Oct 2006
          • 9749

          #5
          Originally posted by hamzeh83
          Ok madankarmukta ,,
          I have card reader and i want when swap the card ,write on my program even it not focus on screen,,
          i hope clear to u what i want

          Thanks
          Hi Hamzeh,

          You should contact the manufacturer of the card reader for information on how to use their reader.

          Normally, from what I understand of these things, when a card is presented to a reader, the reader will determine whether or not to deny or permit the person presenting the cards. This is considered to be a "transactio n". This transaction should be stored somewhere, like in a database, in the reader itself, or in the access control unit that the reader is connected to.

          Your application will need to be able to tell when this transaction happens and will need to be able to retrieve the transaction information. So, your application will somehow have to communicate with the reader, database, or access control unit when the transaction occurs.

          The only way to know how to do this is to contact the company that makes the reader and ask them for a software developer kit and any documentation about how their product works.

          The experts here will answer any questions you have with concerns to any .NET related questions or problems; however they cannot help you with understand how to retrieve the data from a card reader.

          -Frinny

          Comment

          • tlhintoq
            Recognized Expert Specialist
            • Mar 2008
            • 3532

            #6
            I guess this begs the question "Do you mean a memory card reader, or a magnetic stripe card reader?" Both are referred to as 'card reader'

            Comment

            • Frinavale
              Recognized Expert Expert
              • Oct 2006
              • 9749

              #7
              Originally posted by tlhintoq
              I guess this begs the question "Do you mean a memory card reader, or a magnetic stripe card reader?" Both are referred to as 'card reader'
              Regardless of whether or not the card reader is for an access control system or for a memory card, I would still recommend contacting the company for information on how to integrate with their product.

              Comment

              Working...