Search results

  1. Hudas

    VBA find and open an email without looping thru each email in the inbox

    Hi - I was able to get the unique identifer for an email using the below property. Now, what I'm hoping to achieve is to use this property to search for the email and open it without looping thru each email in the Inbox. As of today there are atleast 14,000 emails in the inbox thats why looping...
  2. Hudas

    Ms Outlook Default From

    Hi Alex, Thank you!! By the way where do i exactly put this code.
  3. Hudas

    Ms Outlook Default From

    Hi - I have multiple Mailbox in my profile. How do i make it so that one of my mailbox will be the default FROM whenever I create a new email? Thank you Jun
  4. Hudas

    Outlook VBA script reverting back to previous changes

    Hello! We are using virtual desktop. We have Outlook 2010 installed and I have scripts written in Outlook VBA. I am still working with my scripts and I always save after I made any changes. Its just when I close my outlook and logout of the virtual desktop and I log back in to virtual desktop...
  5. Hudas

    MS Outlook VBA: Get the reply date and time.

    Thank you Diane for taking the time...I Appreciate it really!
  6. Hudas

    MS Outlook VBA: Get the reply date and time.

    Hello Diane, I understand now that the reply will have a new message ID. I'm lost.. really lost.. How do I get the those numbers that you posted from outlook? Thank you Hudas
  7. Hudas

    MS Outlook VBA: Get the reply date and time.

    Hi Diane... In the ms access database i have the message id as the unique identifier of the email received. And when the user reply to the email, and sends the reply.. im trying to catch and match the message id of the email being sent (thinking that the message id is still the same) to what...
  8. Hudas

    MS Outlook VBA: Get the reply date and time.

    Thank you Diane! I will try what you suggested!!
  9. Hudas

    MS Outlook VBA: Get the reply date and time.

    Hi - I have a database that records all incoming emails. Now, I want to determine what date and time an email was replied and put in the database so that I can have the duration for time the email was received and replied. Can anyone please give me an idea?or point me to the right...
  10. Hudas

    Run Macro when an Email is received

    Hi Diane, Again Thank you very much! You've been a great help!!! Kindly see below working code: It fires whenever a new email is received in our Group MailBox. Private WithEvents olInboxItems As Items Private Sub Application_Startup() Dim objNS As NameSpace Set objNS =...
  11. Hudas

    Run Macro when an Email is received

    Hello... My outlook profile set up, but aside from that I have another profile which is a Group Mail Box added to me. My question is how do I run a macro when we received an email to the group mailbox. We are using an exchange server. I've tried the Application_NewMailEx but its just...
  12. Hudas

    Hyperlink Saved Outlook Email to MS Access Table

    Solved: Hyperlink Saved Outlook Email to MS Access Table Hi Diane, Below is the working code. Thank you very much! The below code gets the email details and saved it to database then email is saved to a specific location then a hyperlink is added referencing that email. We can now...
  13. Hudas

    Hyperlink Saved Outlook Email to MS Access Table

    Hello Diane, Below is the code I am using to update the dabase with email details. Public Function oImportUnread() Dim olApp As Outlook.Application Dim inBox As Outlook.MAPIFolder Dim inBoxItems As Outlook.Items Dim mObject As Object Dim rs As DAO.Recordset Dim strSQL...
  14. Hudas

    Hyperlink Saved Outlook Email to MS Access Table

    Hi! I am hoping someone could help me with my problem or could point me to the right direction. When an Email is received in MS Outlook, the details(Entry ID, Sender, ReceivedTime etc) of that email is saved in a MS Access table. And because there is no way for us to create .PST files...
  15. Hudas

    Import Outlook Emails(Inbox) to MS Access as Attachment

    Good Day Everyone!! This is my first post in this forum, I am hoping someone could help me. How do I Import Outlook Emails specifically from the Inbox to MS Access as an actual attachment using VBA? Is this even possible? I would really appreciate it if you can give me your insight...
Back
Top