Populating textbox with value in another textbox in edit mode

pinky

Registered User.
Local time
Today, 07:51
Joined
Jul 6, 2009
Messages
29
Hi,
I have a priority issue and working on populating textbox. They are 2 textboxes, open date and start date. They enter date in open date textbox which needs to be populated in start date textbox which can be edited and stored in table if they are not the same in any case.
Can anyone help me with this issue.

Thanks,
Pinky
 
Code:
Private Sub OpenDate_AfterUpdate()
  Me.StartDate = Me.OpenDate
End Sub
 
Thank you for helping me.

Thanks,
Pinky
 

Users who are viewing this thread

Back
Top Bottom