Recent content by GaryPanic

  1. G

    Solved Tantrum time ...Run time error91

    could you expand upon this - as it is this line where its "having an issue" ? how would you declare it ? (I am more of a patch it together user tthan an indepth user )
  2. G

    Solved Tantrum time ...Run time error91

    I got the coding from https://christiaanheidema.nl/vba/?Tips_and_Tricks___Saving_e-mails_after_sending I think i will have to re do this to ensure i have not cocked up up
  3. G

    Solved Tantrum time ...Run time error91

    is there an issue with new outlook?
  4. G

    Solved Tantrum time ...Run time error91

    Private Sub QuickEmailSend_Click() Const bq As String = "<blockquote>" Const bqe As String = "</blockquote>" 'Dim mi As Outlook.MailItem 'Dim ID As String 'Dim user As String 'Dim sentAfter As Date 'FileName = ID '### Dim OL As Outlook.Application Set OL = New...
  5. G

    Solved Tantrum time ...Run time error91

    it states 15.02 -as the last patch but i don't believe it - I'll get hold of my network guy ASAP I might slow down the process and see what happens
  6. G

    Solved Tantrum time ...Run time error91

    Doc will revert ...I kicked myself out of my remote access
  7. G

    Solved Tantrum time ...Run time error91

    #it might be outlook it's not running fast- so my code is going faster than outlook and looking for something that might not of been sent (In outbox rather than sent) I will revert one way or the other - I don't have access to Outlook controls -so I need to get my techies to resolve
  8. G

    Solved Tantrum time ...Run time error91

    as an example
  9. G

    Solved Tantrum time ...Run time error91

    Yes its looking for the ID (stored in the catagories in outlook) ID = Format(Now(), "yyyymmddhhnnss") & "_" & CInt(1000 * Rnd()) + 1 ' Save date and time sentAfter = Now() ' Change mail item properties With mi .To = Nz(Me.email) .Subject = Subjectz .Categories = ID
  10. G

    Solved Tantrum time ...Run time error91

    ok the message popped up - so that's one thing (many thanks) - but isn't solving the underlying issue
  11. G

    Solved Tantrum time ...Run time error91

    I will add this in - but just seems weird that its playing up now I will give it a go in 10 mins or so
  12. G

    Solved Tantrum time ...Run time error91

    findSentItem_start: With sfolder ' With olkns.GetDefaultFolder(olFolderSentMail) Set items = .items.Restrict("[SentOn] >= '" & Format(sentFromTime, "ddddd h:nn AMPM") & "'") For Each item In items If TypeName(item) = "MailItem" Then If...
  13. G

    Solved Tantrum time ...Run time error91

    here is the issue bit (been fine for two years or so ) Set mi = FindSentItem(ID, sentAfter) Sentstamp = mi.SentOn ' E-mail has been sent If Not (mi Is Nothing) Then so its going int runtime error 91 : Object Variable or with block variable not set
  14. G

    Solved Tantrum time ...Run time error91

    Hi guys -- been a long time OK I have a email fuction that sudden has a tantrum and comes up with runtime error 91 ... but I have been using this for a couple of years and its only now kicked in this week - any ideas why - I will post the code etc up or should I see if an update has...
Back
Top Bottom