changed value on form to copy data from field into another field

  • Thread starter Thread starter Derek Davlut
  • Start date Start date
D

Derek Davlut

I have a textbox called "Dock", it a text field. I also have two other
textboxes that are date/time formats.

Date/Time Formats: 1st Textbox called Delivery
2nd Textbox called Initaldelivery.

When a change occurs on the form in the dock textbox I would the data from
the 1st textbox copied into the 2nd textbox. I am assuming I will be using a
format like below, but, I am not sure how to format the code.

Sub Item_CustomPropertyChange(ByVal Name)
End Sub

Some help would be greatly appreciated.

D.
 
You left out an important piece of information. Whether any of these text
boxes are bound to Outlook properties and, if so, to which properties. In
the meantime, see http://www.outlookcode.com/d/propsyntax.htm for an example
of how to use the CustomPropertyChange event and how to work with both
custom properties and form controls.
 
Back
Top