Recent content by lucy1216

  1. L

    Access 2010 PDF and Email a Report Using VBA Code

    This may assist you as well: Google the following: Sending Google Mail (Gmail) from MS Access, VBA, Excel, Word...by Tony Hine
  2. L

    Access 2010 PDF and Email a Report Using VBA Code

    I used Allen Brown's code and made modifications to it: Private Sub cmdEmailConfirmed_Click() Dim rst As DAO.Recordset Dim db As DAO.Database Dim oOApp_001 As Outlook.Application Dim oOMail_001 As Outlook.MailItem Dim distro As String Dim strSql As String Set db = CurrentDb() 'Sets the email...
  3. L

    Inserting an update command in an email loop

    My apologies..could you walk me through the "edit"?
  4. L

    Inserting an update command in an email loop

    I have the following code, thanks to Stretchin'; however I need to update a table for each person emailed. [CODE]Private Sub cmdEmailConfirmed_Click() Dim rst As DAO.Recordset Dim db As DAO.Database Dim oOApp_001 As Outlook.Application Dim oOMail_001 As Outlook.MailItem Dim distro As String...
  5. L

    Sending emails until EOF

    So sorry, where do I find information on using code tags?
  6. L

    Sending emails until EOF

    First of all, to whomever reads and/or responds I thank you for your patience. I am using Access 2010/Outlook 2010 32bit I am relatively new to VBA and I am completely lost on how to accomplish the following: My database was built to facilitate approvals for accounts payable. My issue now is...
  7. L

    Update VBA code

    Thank you for your response; however, I got it figured out!
  8. L

    Update VBA code

    Please keep in mind that I am just starting out using VB. What I am trying to accomplish is this: I have a click event: Private Sub cbtnApproverSendApproval_Click() On Error GoTo Err_cbtnApproverSendApproval_Click Dim stDocName As String stDocName = "mcrEmailIncoming" *****...
  9. L

    Visual Basic Coding for Msg Box

    Okay, so where on the properties tab do I put the IIf statement?
  10. L

    Visual Basic Coding for Msg Box

    What I am trying to do is display a message when a calculated field on the form is 0 and another message if it isn't. I have a form that has a total for a table, an entry box to put in the total of an imported vendor spreadsheet and a calculated field to show the difference, if any. I am lost...
  11. L

    Newbie

    Hello everyone! I have been using access for about a year or so and am now rewriting the databases that I have created in VB. .... So I will have some questions!
Top Bottom