Exemplo n.º 1
0
 void core_onStatus(object source, GriauleFingerprintLibrary.Events.StatusEventArgs se)
 {
     if (se.StatusEventType == GriauleFingerprintLibrary.Events.StatusEventType.SENSOR_PLUG)
     {
         core.StartCapture(source);
     }
     else
     {
     }
 }
Exemplo n.º 2
0
 void fingerPrint_onStatus(object source, GriauleFingerprintLibrary.Events.StatusEventArgs se)
 {
     if (se.StatusEventType == GriauleFingerprintLibrary.Events.StatusEventType.SENSOR_PLUG)
     {
         fingerPrint.StartCapture(source.ToString());                                                                                     //Cuando detecta algo
     }
     else
     {
         fingerPrint.StopCapture(source);
     }
 }
 void Fingerprint_onStatus(object source, GriauleFingerprintLibrary.Events.StatusEventArgs se)
 {
     if (se.StatusEventType == GriauleFingerprintLibrary.Events.StatusEventType.SENSOR_PLUG)
     {
         Fingerprint.StartCapture(source.ToString());
     }
     else
     {
         Fingerprint.StopCapture(source);
     }
 }
Exemplo n.º 4
0
 void core_onStatus(object source, GriauleFingerprintLibrary.Events.StatusEventArgs se)
 {
     if (se.StatusEventType == GriauleFingerprintLibrary.Events.StatusEventType.SENSOR_PLUG)
     {
         core.StartCapture(source);
         mensajeBarraEstado.Text = "Lector Conectado";
     }
     else
     {
         mensajeBarraEstado.Text = "Lector Desconectado";
     }
 }
Exemplo n.º 5
0
 void fingerPrint_onStatus(object source, GriauleFingerprintLibrary.Events.StatusEventArgs se)
 {
     if (se.StatusEventType == GriauleFingerprintLibrary.Events.StatusEventType.SENSOR_PLUG)
     {
         fingerPrint.StartCapture(source.ToString());
         SetLvwFPReaders(se.Source, 0);
     }
     else
     {
         fingerPrint.StopCapture(source);
         SetLvwFPReaders(se.Source, 1);
     }
 }