This Visual Basic sample shows how to identify a person.

Option Explicit
Private Sub BioIDCtrl_ProcessAborted(ByVal cause As BioIDAbortReason)
     MsgBox "aborted"
End Sub
Private Sub BioIDCtrl_IdentificationReady(ByVal user As IBioIDUser)
    If user.IsRejectedUser Then
        MsgBox "Failed"
    Else
        MsgBox "Hello " & user.UserName
    End If
End Sub
Private Sub identify_Click()
    BioIDCtrl.recorder.identify
End Sub

The complete project files are contained in the BioID SDK setup and will be installed to the subfolder "Samples\VB\IdentifyPerson" of your BioID SDK installation (if selected). An already compiled version can be run via the shortcut "Start/Programs/HumanScan/Samples/Identify".