R
Rpettis31
I have a status notes box that the user clicks an add note button and the new
note should be listed in the listbox with the date. However I am only able
to get the date and the - to appear in the list box.
Private Sub cmdAddNote_Click()
Dim notes As String
Me.txtAddNote = notes
Me.lstStatusNotes.AddItem (date &" -" & notes)
End Sub
note should be listed in the listbox with the date. However I am only able
to get the date and the - to appear in the list box.
Private Sub cmdAddNote_Click()
Dim notes As String
Me.txtAddNote = notes
Me.lstStatusNotes.AddItem (date &" -" & notes)
End Sub