I have a list box that I add Members to with an add button and it pops up an Input box. The listbox gets updated with what I input in the inputbox but the database does not get updated with what is in the list box. I have my field setup in the database as Text. My code is below:
Dim stradd As String
stradd = InputBox("Enter Member")
lstgroupmembers.AddItem stradd
Dim stradd As String
stradd = InputBox("Enter Member")
lstgroupmembers.AddItem stradd