14/12/2011, 14:21
|
| | | Fecha de Ingreso: julio-2011 Ubicación: Coahuila
Mensajes: 320
Antigüedad: 13 años, 4 meses Puntos: 8 | |
Respuesta: digitalpersona ejemplo lector de huella este es el codigo donde lo carga
Private Sub OnTemplate(ByVal template)
Invoke(New FunctionCall(AddressOf _OnTemplate), template)
End Sub
Private Sub _OnTemplate(ByVal template)
Me.Template = template
BTN_VERIFY.Enabled = (Not template Is Nothing)
BTN_SAVEFINGER.Enabled = (Not template Is Nothing)
If Not template Is Nothing Then
MessageBox.Show("LA HUELLA HA SIDO CAPTURADA CORRECTAMENTE.")
Else
MessageBox.Show("LA HUELLA NO FUE VALIDA PORFAVOR INTENTELO DE NUEVO")
End If
End Sub
Private Template As DPFP.Template |