No se me activa el timer
Publicado por biki (38 intervenciones) el 24/05/2012 10:50:38
Buenas a todos,
Tengo un timer inhabilitado y que se habilita en tiempo de ejecucion. Este sería el codigo de la funcion donde se inhabilita y se vuelve a habilitar el timer:
No consigo que se me active el timer porque puede ser??
Tengo un timer inhabilitado y que se habilita en tiempo de ejecucion. Este sería el codigo de la funcion donde se inhabilita y se vuelve a habilitar el timer:
1
2
3
4
5
6
7
8
9
10
11
12
Private Sub puerto16_DataReceived(ByVal sender As Object, ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) Handles puerto16.DataReceived
Try
Me.deshabilitarPuertos(puertos)
Me.TimerPuerto16.Enabled = False
......................................
Me.TimerPuerto16.Enabled = True
Catch ex As Exception
AddHandler DataGridVisualizacion.CellClick, AddressOf DataGrid1_CellContentClick
Me.habilitarPuertos(puertos)
Me.TimerPuerto16.Enabled = True
End Try
End Sub
No consigo que se me active el timer porque puede ser??
Valora esta pregunta
0