Results 1 to 4 of 4
  1. #1
    nickblitz is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2012
    Posts
    21

    How do i collect data from 2 tables in 1 email?

    as above.



    please advise!

  2. #2
    redbull's Avatar
    redbull is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Mar 2012
    Location
    Missouri
    Posts
    480
    Details would be useful.. and I have posted the Email code a few times now... Did that not work? are you looking to modify something in the code? What are the table names?

  3. #3
    redbull's Avatar
    redbull is offline Competent Performer
    Windows XP Access 2003
    Join Date
    Mar 2012
    Location
    Missouri
    Posts
    480
    Code:
      Sub CreateHTMLMail()
            ''''Creates a new e-mail item and modifies its properties'
    
    
        Dim olApp As Outlook.Application
        Dim objMail As Outlook.MailItem
        Set olApp = Outlook.Application
        'Create e-mail item'
        Set objMail = olApp.CreateItem(olMailItem)
     
    
    
              ''' Assigning things above in outlook mail message.
          With objMail
            .Subject = 
            .Body = 
            .To = 
            .Display
            .ReadReceiptRequested = True
          End With
      End Sub
    Might have to dim a couple things out and then set them as the specific thing you want... not sure how thats done but I'm sure its possible.

  4. #4
    nickblitz is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2012
    Posts
    21
    under external data tab theres this thing called create email.


    i want to collect data to update existing data from 2 tables. i realize that i can't because access only allows me to get from 1 table.

    what does the above code do?

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Collect Data via Email Form
    By sgilleland in forum Access
    Replies: 3
    Last Post: 05-17-2013, 04:34 PM
  2. collect data via email
    By aspen in forum Access
    Replies: 2
    Last Post: 04-26-2012, 03:21 AM
  3. External Data Collect Data - email
    By DucDuc in forum Access
    Replies: 1
    Last Post: 01-19-2012, 12:06 AM
  4. Collect Data Through Email in Table Format
    By snadeemshaikh in forum Access
    Replies: 1
    Last Post: 08-03-2011, 12:31 AM
  5. Best Way to Collect Data
    By dssrun in forum Access
    Replies: 9
    Last Post: 01-05-2011, 10:14 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums