Ver Mensaje Individual
  #17 (permalink)  
Antiguo 18/01/2012, 10:29
Avatar de lokoman
lokoman
 
Fecha de Ingreso: septiembre-2009
Mensajes: 502
Antigüedad: 14 años, 6 meses
Puntos: 47
Respuesta: Calendario en Visual Basic 6.0

Facil, 2 Botones: CMD1 y CMD2

Código vb:
Ver original
  1. Private Sub cmd1_Click()
  2.     MonthView.Value = MonthView.Value - 1
  3. End Sub
  4.  
  5. Private Sub cmd2_Click()
  6.     MonthView.Value = MonthView.Value + 1
  7. End Sub