Recent content by DStrange

  1. D

    VBA Macro Works in 2007 but errors in 2010

    Here is the entirety of the code: Sub Email() On Error Resume Next Dim msg As MailItem Dim i As Integer Dim objFolder As Outlook.MAPIFolder Dim objNS As Outlook.NameSpace Dim objItem As Object Dim Box As Integer Set objNS =...
  2. D

    VBA Macro Works in 2007 but errors in 2010

    I have this snippet of code that is giving me problems. On Error GoTo MoveHandler Box = InputBox("1 for Processed" & vbNewLine & "2 for No Ticket Required" & vbNewLine & "3 To Not Move this Email") If Box = "1" Then objItem(1).Move objFolder.Folders("Processed")...
Back
Top