Search results

  1. P

    Use simple Mapi with Access 2010

    Hi TimTDP, I can't give you any advice concerning simple MAPI, but i can share some code to send emails through Thunderbird. You can have attachments (which SendObject does not allow), but you'll have to click the Send button everytime you create a message. Public Function...
  2. P

    Sending HTML emails

    Apparently the "Open ... for Input" method doesn't work with Unicode txt files. It must be ANSI. A html file not encoded as unicode can be read with the "Open...Input method". Putting the resulting string into the body of an email using SendObject is apparently not the way to go, as SendObject...
  3. P

    Sending HTML emails

    Hi all, I've been using Access to send emails for quite a while now, using either sendObject or shell instructions sent to Thunderbird (when i needed attachments). The body of my messages where imported from a txt file using the following code : Public Function strLecture(ByVal cheminFile As...
  4. P

    Access 2010 WebBrowser DOM

    I think you're right Banana. You can access the document using : Me.WebBrowser1.Object.Document .... The problem is that i haven't been able to find any documentation on the methods or properties available in VBA. Have you found any? Also, say we could use...
  5. P

    Access 2010 WebBrowser DOM

    Hi darbid, It worked perfectly. Thank you so much! That was way more simple than i was expecting. Cheers!
  6. P

    Access 2010 WebBrowser DOM

    Hi Darbid, I 'm sorry i can't give you the url as i m using a local file in my webbrowser. It's nothing fancy : a simple html page with a google map and some hyperlinks. Basically i have a list of people for a few countries, and their name is displayed in an info window. Each name is a link...
  7. P

    Access 2010 WebBrowser DOM

    Thank you Banana for your reply. Yes, the WebBrowser object does support a limited set of events, but none related to the objects within the document (hyperlinks, buttons, etc.). I'm not familiar with the MSXML library at all, could you be a little more specific? More generally, since the VBA...
  8. P

    Access 2010 WebBrowser DOM

    Hello everyone, this is my first post in this forum. I have a form containing a webbrowser in my access 2010 database. This is the latest version of the webbrowser (that is, not the ActiveX version). I use it to display a html document, with a few hyperlinks. I've been searching the web to find...
Top Bottom