M
MSU Sptn
I have a multiselect listbox (lstProgramManagers) in the form
'Frm_ProgramManagers' where emails can be selected. The list box row source
is defined as
SELECT [TblProgramManager].[PM_ID], [TblProgramManager].[T_Manager_Email]
FROM TblProgramManager;
I need to have the selected emails be placed in the field
'T_Reminder_Mailing_List' on the table 'TblCompliance' in a list separated by
a semicolon so the SendObject command can grab the list of addresses. The
selected emails need to be saved in the table until changes are made to the
listbox selection. The selected emails may be different for each recordset
in 'TblCompliance' so I also need to apply a filter. I am new to VB code and
am trying to fudge my way through it, is there a way to save selected items
from a list box to the corresponding row in a table?
'Frm_ProgramManagers' where emails can be selected. The list box row source
is defined as
SELECT [TblProgramManager].[PM_ID], [TblProgramManager].[T_Manager_Email]
FROM TblProgramManager;
I need to have the selected emails be placed in the field
'T_Reminder_Mailing_List' on the table 'TblCompliance' in a list separated by
a semicolon so the SendObject command can grab the list of addresses. The
selected emails need to be saved in the table until changes are made to the
listbox selection. The selected emails may be different for each recordset
in 'TblCompliance' so I also need to apply a filter. I am new to VB code and
am trying to fudge my way through it, is there a way to save selected items
from a list box to the corresponding row in a table?