Search results

  1. deafmetal1

    Storing an Outlook Folder Location

    With some help from Ace, we've come up with this so far: Private Sub FLDR_Click() Dim rs As DAO.Recordset Dim strPath As String strPath = Application.CodeProject.Path Dim olApp As Outlook.Application Set olApp = New Outlook.Application Dim olNS As...
  2. deafmetal1

    Storing an Outlook Folder Location

    Hello, In my quest to build a email message parsing tool, I can manually VBA code the folder location I wish to parse. But I'd rather provide a button on the form to which would result in a folder menu for the user to select where the parsing is to occur. This prevents a novice user from...
  3. deafmetal1

    Email Parsing (vb code to find ASCII text)

    Ok, how about just grabbing the ReceivedTime of the Outlook mail item? That would work good enough I suppose. How do I do that? I've tried strDTG = strFileToParse.ReceivedTime and it doesn't work.
  4. deafmetal1

    Email Parsing (vb code to find ASCII text)

    Update: Nothing resolved yet.
  5. deafmetal1

    Time Stamp

    Kewl, will try this out and see how it works. Thanks!!
  6. deafmetal1

    Time Stamp

    I was able to tweak this for a date, as opposed to a time. But it only updates if I put my cursor on that row again after putting data in A1. How can I make it automatically enter the date in B1 once hit the enter key down to A2? Here's the code I have thusfar: Private Sub...
  7. deafmetal1

    Yesterday's date stamp

    Great info, thanks but when I use that formula, I get circular reference errors.
  8. deafmetal1

    Email Parsing (vb code to find ASCII text)

    Any ideas on how to grab/parse that Date Time Group? I figure it may have something to do with specifying a specific amount grouping of alpha and numeric characters. I'm just unfamiliar with how to do that. It will always be ######Z LLL ## # = Number L = Letter Z = ZULU time, will always be...
  9. deafmetal1

    Email Parsing (vb code to find ASCII text)

    A sample message looks like this: I have other Public Subs that take care of the Outlook stuff, like what folder to look in, etc... I have a separate module that does the line delimiting for the slashes. The below code does the actual line parsing: Public Sub ParseMSG(strFileToParse As...
  10. deafmetal1

    Email Parsing (vb code to find ASCII text)

    I built an email parser that finds text based on message formatting. For example, the messages I parse have slashes in them as follows: SUBJ/MESSAGE SUBJECT/SENDER/MONTH// I simply parse the SUBJ line and end it with the // delimiter. Works GREAT! How to do code it to find text that isn't...
Back
Top Bottom