sql server connection

  • Thread starter Thread starter Graham Davis
  • Start date Start date
G

Graham Davis

I would like to query a sql server database from an
outlook form to generate lists of email addressses based
on various criteria. The lists are quite long and should
be put into the BCC field of the message.
 
Is there a question here?

You can query SQL Server from a form, I've done that many times. Just do it
as you would any SQL Server query using the standard ADO methods (or however
you want to query the database). Just remember that in VBScript all
variables are Variants.
 
Back
Top