Search results

  1. L

    Microsoft References Needed For SendObject

    George, I'm not sure. Also, how would I set up Outlook globally (via VBA) ?
  2. L

    Microsoft References Needed For SendObject

    I figured out what is happening with my delayed e-mails. It is due to Microsoft Outlook's "Delay Delivery" option. You can locate it by opening an e-mail, click on "Options", then click on "Delay Delivery". Locate the "Delivery options" section and uncheck the "Do not deliver before" box. When I...
  3. L

    Microsoft References Needed For SendObject

    GPGeorge, This even happens when sending to myself. Any suggestions ?
  4. L

    Microsoft References Needed For SendObject

    Here are my references.
  5. L

    Microsoft References Needed For SendObject

    Tom, I'm running Outlook 2016. My problem is that my e-mail sent by the MS Access SendObject command is arriving days latter. I had this problem before, but I can't remember how I fixed it. I vaguely remember selecting an additional reference (from the Object Library). I can't remember which DB...
  6. L

    Microsoft References Needed For SendObject

    What Microsoft Access references (in the Object Library) are needed to send e-mails (Outlook, Gmail, Yahoo . . . etc.) with the SendObject command ?
  7. L

    Retrieve DCount Statement (Duplicate Name)

    The below DCount statement gives me the number of duplicates records from the "Query_Find_Duplicates_For_Gift_Totals" query. How can I get the names of the duplicate records from the below DCount statement? DCount(" Gift_Totals.[Survey_Taker_Last_Name]", "Query_Find_Duplicates_For_Gift_Totals")
  8. L

    Elimination Of A Microsoft Outlook Email Safety Message

    How can I eliminate the Microsoft Outlook email safety message when sending an email using "SendObject" ? Attached is the image of the message.
  9. L

    Duplicate Records (Display On Form)/No Duplicate Records (Display Single Record On Report)

    Yes, but how can I determine this from a query called by a form button or VBA ?
  10. L

    Duplicate Records (Display On Form)/No Duplicate Records (Display Single Record On Report)

    To determine which process to take. By the way, both results will be on forms.
  11. L

    Duplicate Records (Display On Form)/No Duplicate Records (Display Single Record On Report)

    Is it possible to retrieve the count of duplicate records (produced from the query below) ? I want to see if there are any duplicate records, if so, then show them on a form. If no duplicate records, then display a report with the single record. In (SELECT [First_Name] FROM [Location_Totals] As...
  12. L

    Runtime Error 2147467259 (80004005)

    It appears that when I repaired Outlook (via "File"/"Account Settings"/"Repair") fixed the problem. Thanks for all the help given ! ! !
  13. L

    Runtime Error 2147467259 (80004005)

    I have no problems receiving or sending emails. So, how can I correct this ?
  14. L

    Runtime Error 2147467259 (80004005)

    I also have the below reference box checked in "Tools" . . . References . . . Microsoft Outlook 16.0 Object Library
  15. L

    Runtime Error 2147467259 (80004005)

    What does the below error mean and do I fix it ? Runtime Error 2147467259 (80004005) It fails on ==> Set M = O.CreateItem(olMailItem) ' Remember to add REFERENCE to Microsoft Outlook Object Library Dim Msg As String ' Msg = "Dear " & Firstname & ",<P> & _ ' "Your statement balance as...
  16. L

    MS Access VBA Error 3211 "The database engine could not lock table",

    I have a macro that's giving me a 3211 error. How can I find out which form, table, or query in the macro is open ?
  17. L

    Automatic Advancement To Next Textbox

    I want to automatically advance to the next textbox after entering a numeric value.
Top Bottom