Control Date and Time Picker....

27/05/2004 - 17:37 por Jorge Luis Vejerano | Informe spam
Tengo winxp y vfp 8.0

Inserto un control Date and Time Picker en un form, cuando le doy clic
derecho y luego "dtpicker properties", no me muestra las propiedades.

Trato de hacer referencia a las propiedades "day,month,year" de manera
programada asi:

thisform.olecontrol1.day=day(date())
thisform.olecontrol1.month=month(date())
thisform.olecontrol1.year=year(date())

Y me dice que la propiedad no existe.

Alguna Sugerencia.

GRacias.
 

Leer las respuestas

#1 Alex Feldstein
27/05/2004 - 23:09 | Informe spam
On Thu, 27 May 2004 10:37:06 -0500, Jorge Luis Vejerano
wrote:

Tengo winxp y vfp 8.0

Inserto un control Date and Time Picker en un form, cuando le doy clic
derecho y luego "dtpicker properties", no me muestra las propiedades.

Trato de hacer referencia a las propiedades "day,month,year" de manera
programada asi:

thisform.olecontrol1.day=day(date())
thisform.olecontrol1.month=month(date())
thisform.olecontrol1.year=year(date())

Y me dice que la propiedad no existe.




Prueba con:
thisform.olecontrol1.object.day=day(date())
thisform.olecontrol1.object.month=month(date())
thisform.olecontrol1.object.year=year(date())



Alex Feldstein
________________________________
Microsoft Visual FoxPro MVP
Please respond in the public groups so that everybody
can benefit from the exchange.
Favor de responder en los foros públicos asi todos se benefician.
(Address scrambled with ROT-13)

Preguntas similares