Ver Mensaje Individual
  #7 (permalink)  
Antiguo 15/06/2011, 10:45
Avatar de galletica12
galletica12
 
Fecha de Ingreso: mayo-2011
Ubicación: Tekax, Yucatán
Mensajes: 213
Antigüedad: 13 años, 10 meses
Puntos: 8
Respuesta: Duda sobre control Date TimePicker Visual Basic .Net

ummm podria ser usando un boton y poniendole
la imagen, utilizar un datetimepicker poniendole
visible = false, hacer que le button muestre el
datetimepicker y al darle click al timer se muestre
en texbox.

algo asi como esto:

evento click del boton:
dtpFecha.Visible = true;

para capturar en el texbox:
texbox1.Text = "" + dtpFecha.Text;
dtpFecha.Visible = false;

nota no se muestra desplegado talvez como
quisieras pero es un ejemplo si te sirve.