So I have been working on this app, and want to know if there is a way to capture the data in side of a container instead of having to list each item inside of the container. So in the code below this is for my submit button, it gathers all of the data in the boxes and submits it to an email. But I am going to have a huge list of about 30 items in that container on the right-hand side of the screen (see picture below), so instead of having to listout each one of those 30 checkboxes that will be there, can I just put them all inside of the container, and just select the container and the items inside of the container that are checked and pull that information into an email. The idea here is to trim up the code instead of having 30 additional entries in the submit button code.
Office365Outlook.SendEmailV2(
HS_txtinp_Email.Text,
"IT Requirements Request",
HS_txtlbl_EmployeeInformation &
"<br></br>" &
"Employee Name: " & HS_txtinp_EmployeeName.Text &
"<br>Department: " & HS_txtinp_Department.Text &
"<br>Job Title: " & HS_txtinp_JobTitle.Text &
"<br>Start Date: " & HS_dp_StartDate &
"<br>Cost Center: " & HS_dd_CostCenter.Selected.Value &
"<br>Location: " & HS_dd_Location.Selected.Value &
"<br></br>" &
HS_txtlbl_Equipment &
"<br>" &
"<br>No Equipment Needed: " & HS_cb_NoEquipmentNeeded &
"<br>Headset: " & HS_dd_Headset.Selected.Value &
"<br>Desktop/Laptop: " & HS_dd_WorkstationSetup.Selected.Value &
"<br>VPN Access: " & HS_dd_VPNAccess.Selected.Value &
"<br>Monitors: " & HS_dd_Monitors.Selected.Value &
"<br>Phone: " & HS_dd_Phone.Selected.Value &
"<br>Applications/Licenses: "

Report
All responses (
Answers (