DTpicker in custom form

  • Thread starter Thread starter rdschulte
  • Start date Start date
R

rdschulte

I am attempting to add a date picker (Microsoft Date & Time picker 6.0
out of the custom controls, to a custom Task form. I do not know ho
to bind the control to return the "picked date" to a text box or labe
on the form.

I have read thru various threads that point to a webpage explaining th
controls you can use, but they give no help in actually "DOING IT" an
making it work.

Any help would be great
 
Here's a scriptlet assigning a variable to the datapicker value:

Sdate = Item.UserProperties.Find("StartDate").Value

Here "StartDate" is a UserDefined field created in the "AllFields" Tab of
your form in the design mode. The same field name i.e. "StartDate" is used
in the "Value" tab when you display the "Properities" of the DatePicker
control.
 
Back
Top