Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim db as DAO.Database
dim rs as DAO.Database
dim strtabname as string
dim strrecipients as string
tabname = "YourAddiesTable"
set db = Application.CurrentDB
set rs = db.OpenRecordset(strtabname)
do until rs.EOF
strrecipients = strrecipients & rs.fields("EmailAddress").value
strrecipients = strrecipients & ";"
loop
tabname = "YourAddiesTable"
strtabname = "YourAddiesTable"
Dim db As DAO.database
Dim rs As DAO.Recordset
Dim strtabname As String
Dim strrecipients As String
strtabname = "Your_Table_Name"
Set db = Application.CurrentDb
Set rs = db.OpenRecordset(strtabname)
Do Until rs.EOF
strrecipients = strrecipients & rs.Fields
("Email_Address").Value & ";"
rs.MoveNext
Loop