B
bgreer5050
I have a subform with the following fields:
Status
NoteField
I would like the double click event for Status to do the following:
Change the status to "Ordered"
Change the Notefield to Notefield + The Current Date
I have tried:
Private Sub Status_DblClick(Cancel As Integer)
Status.Text = "ORDERED"
NoteField.SetFocus
NoteField.Value = NoteField.Text & Date
End Sub
I have also tried Notefield.Text in place of NoteField.Value
I can copy text but I cannot get the date into the NoteField field.
Thanks
Status
NoteField
I would like the double click event for Status to do the following:
Change the status to "Ordered"
Change the Notefield to Notefield + The Current Date
I have tried:
Private Sub Status_DblClick(Cancel As Integer)
Status.Text = "ORDERED"
NoteField.SetFocus
NoteField.Value = NoteField.Text & Date
End Sub
I have also tried Notefield.Text in place of NoteField.Value
I can copy text but I cannot get the date into the NoteField field.
Thanks