Click here to Skip to main content
15,898,999 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to convert existing c/c++.net projects into vb.net Pin
N a v a n e e t h30-Sep-09 17:53
N a v a n e e t h30-Sep-09 17:53 
AnswerRe: How to convert existing c/c++.net projects into vb.net Pin
εїзεїзεїз30-Sep-09 20:24
εїзεїзεїз30-Sep-09 20:24 
QuestionCan not get security code from an Keyboard Wedge Ibutton reader ( ps/2 ) Pin
andre de jong30-Sep-09 11:28
andre de jong30-Sep-09 11:28 
AnswerRe: Can not get security code from an Keyboard Wedge Ibutton reader ( ps/2 ) Pin
Dave Kreskowiak30-Sep-09 14:42
mveDave Kreskowiak30-Sep-09 14:42 
GeneralRe: Can not get security code from an Keyboard Wedge Ibutton reader ( ps/2 ) Pin
andre de jong1-Oct-09 0:32
andre de jong1-Oct-09 0:32 
GeneralRe: Can not get security code from an Keyboard Wedge Ibutton reader ( ps/2 ) Pin
Dave Kreskowiak1-Oct-09 1:10
mveDave Kreskowiak1-Oct-09 1:10 
GeneralRe: Can not get security code from an Keyboard Wedge Ibutton reader ( ps/2 ) Pin
andre de jong1-Oct-09 1:51
andre de jong1-Oct-09 1:51 
GeneralRe: Can not get security code from an Keyboard Wedge Ibutton reader ( ps/2 ) [modified] Pin
andre de jong1-Oct-09 3:25
andre de jong1-Oct-09 3:25 
************************Solved**************************


Dave,

I found the solution to my problem.

The keydown event gives the identification code that it is the ibutton reader.
I can capture the ibutten code in the keypress event.

private m_Sb as new stringbuilder

Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
If e.KeyChar = Microsoft.VisualBasic.ChrW(Keys.Return) Then
login()
Else
m_Sb.append(e.KeyChar.ToString)
End If
End Sub

Thanks for the support.

modified on Thursday, October 1, 2009 9:31 AM

AnswerRe: Can not get security code from an Keyboard Wedge Ibutton reader ( ps/2 ) Pin
εїзεїзεїз30-Sep-09 20:26
εїзεїзεїз30-Sep-09 20:26 
GeneralRe: Can not get security code from an Keyboard Wedge Ibutton reader ( ps/2 ) Pin
andre de jong1-Oct-09 0:38
andre de jong1-Oct-09 0:38 
Questioninheritance Pin
rbjanaki30-Sep-09 10:13
rbjanaki30-Sep-09 10:13 
AnswerRe: inheritance Pin
Dave Kreskowiak30-Sep-09 10:39
mveDave Kreskowiak30-Sep-09 10:39 
GeneralRe: inheritance Pin
rbjanaki30-Sep-09 10:46
rbjanaki30-Sep-09 10:46 
GeneralRe: inheritance Pin
Christian Graus30-Sep-09 11:16
protectorChristian Graus30-Sep-09 11:16 
GeneralRe: inheritance Pin
Dave Kreskowiak30-Sep-09 11:25
mveDave Kreskowiak30-Sep-09 11:25 
GeneralRe: inheritance Pin
Gideon Engelberth30-Sep-09 18:03
Gideon Engelberth30-Sep-09 18:03 
QuestionImage Manipulation Questions Pin
Roland7130-Sep-09 9:42
Roland7130-Sep-09 9:42 
AnswerRe: Image Manipulation Questions Pin
Dave Kreskowiak30-Sep-09 10:31
mveDave Kreskowiak30-Sep-09 10:31 
QuestionXML Export and Import Pin
tjutagir30-Sep-09 6:01
tjutagir30-Sep-09 6:01 
AnswerRe: XML Export and Import Pin
Dave Kreskowiak30-Sep-09 7:23
mveDave Kreskowiak30-Sep-09 7:23 
QuestionAccessing an Authentication Popup box Pin
spamnchips30-Sep-09 4:19
spamnchips30-Sep-09 4:19 
QuestionWindows Service Pin
Archimedes2430-Sep-09 2:41
professionalArchimedes2430-Sep-09 2:41 
AnswerRe: Windows Service Pin
tosch30-Sep-09 3:57
tosch30-Sep-09 3:57 
AnswerRe: Windows Service Pin
Steven J Jowett30-Sep-09 4:45
Steven J Jowett30-Sep-09 4:45 
AnswerRe: Windows Service Pin
darkelv30-Sep-09 5:41
darkelv30-Sep-09 5:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.