Tema: Reloj fijo
Ver Mensaje Individual
  #10 (permalink)  
Antiguo 19/07/2010, 12:45
Avatar de XYON126
XYON126
 
Fecha de Ingreso: abril-2006
Mensajes: 272
Antigüedad: 18 años
Puntos: 0
Respuesta: Reloj fijo

y finalmente esto .:


Código vb:
Ver original
  1. 'Control horario Wellington
  2. If Label8 <= "17:30" Then
  3. Label17.Caption = "CERRADA"
  4. ElseIf Label8 >= "8:30" Then
  5. Label17.Caption = "CERRADA"
  6. Else
  7. Label17.Caption = "ABIERTA"
  8. End If
  9.  
  10. 'Control horario Toronto
  11. If Label9 >= "17:30" Then
  12. Label18.Caption = "CERRADA"
  13. ElseIf Label8 >= "8:30" Then
  14. Label18.Caption = "CERRADA"
  15. Else
  16. Label18.Caption = "ABIERTA"
  17. End If
  18.  
  19.  
  20. End Sub