Search results

  1. J

    Local group [club] membership renewal by email, not post?

    I'm testing for if signed up, as there's no point in sending a form to those already signed up. (OK, no terrible consequences if you do, but....)
  2. J

    Local group [club] membership renewal by email, not post?

    Yes, send form anyway (I said). Agreed, test for NOs first, before testing for 'if signed up'. I'll work on some code.
  3. J

    Local group [club] membership renewal by email, not post?

    Not really the three states as you say. GA is encouraged as soon as they join. Some ignore/think about it/procrastinate etc; some sign up, and some say 'no I won't'. We send a GA Declaration form (what we are discussing) (which if filled in and returned we have to store adn show to HMRC as...
  4. J

    Local group [club] membership renewal by email, not post?

    @Mark_ The code (above) says , I believe, IF GA flag is false 'member not signed up name a pdf file including GA in the filename generate that pdf Else just the Renewal the code comment:- 'Gift Aid Report Only Included If Selected should for clarity read...
  5. J

    Local group [club] membership renewal by email, not post?

    "Why not..." well it does indicate just that, but that may be because some folk haven't got around to it or didn't consider it etc etc, The Declined is when some one specifically says they don't want to (and we have to assume they won't in the future, so we don't want to bug them with unwanted...
  6. J

    Local group [club] membership renewal by email, not post?

    In english, it goes like this: they have signed up for GA so we put in a tick. Equally, if they have stated they do not want to get involved, a tick goes in 'declined' The code hasn't been changed and works as intended. I just need guidance on the VBA way of saying: if not signed up, and...
  7. J

    Local group [club] membership renewal by email, not post?

    Thanks to the code from Daniel Pineault this is working very well with one 'fly in the ointment'. This correctly generates a gift aid form if a member's record for [Gift aid] is false. If rstClone![Gift Aid] = 0 Then strSubject = strSubjectGiftAid...
  8. J

    Local group [club] membership renewal by email, not post?

    Yes, it is / does. (y)
  9. J

    Local group [club] membership renewal by email, not post?

    Both the Gift Aid and Standing Order attachments ( referred to elsewhere as B & C) are governed by boolean fields. If a member is not signed up, there is no check mark, and the attachment is[are] sent to encourage doing it. The code I have looks [to me!] quite different to yours, but I believe...
  10. J

    Local group [club] membership renewal by email, not post?

    I hadn't seen your post [this above] before I posted my last. Yes, not fair on Daniel, really. I probably should have insisted on telling mike more about what was required before he started his work.
  11. J

    Local group [club] membership renewal by email, not post?

    Is it OK to post long blocks of code here? Hopefully. This is Daniel's code [below] which works well sending attachments A and B in a single email. (A very big thank-you to him!) My first question is where/how to add the additional code to check for attachment C ( the Standing Order) ? Can I...
  12. J

    Local group [club] membership renewal by email, not post?

    Yes, I have flags in each member's record to control whether to include the B and/or C reports in each email. This all works with A and B, and it remains for me to sort out the code to additionally attach C when needed. Which, presumably, is simply a question of repeating the appropriate parts...
  13. J

    Local group [club] membership renewal by email, not post?

    Yes, I am using the code on UA from Daniel Pineault. It's my problem that I can't see that the code you posted is simillar! EDIT: I see now where the similarity lies. Apologies.
  14. J

    Local group [club] membership renewal by email, not post?

    Thanks, from what I can see, the code I have (which is working well, just needs extending) has tackled the problem in a very different way to the code you are showing me. (If you're interested it is in the thread referenced above in my msg 31.) But thank you.
  15. J

    Local group [club] membership renewal by email, not post?

    in the block of code_ (at utteraccess.com/topics/2066496 ) Set OutApp = CreateObject("Outlook.Application") OutApp.Session.Logon rstClone.MoveFirst While Not rstClone.EOF down to Wend On Error GoTo 0 There is a IF, Else, End If about Gift Aid Report...
  16. J

    Local group [club] membership renewal by email, not post?

    Mike60Smart who was sorting out my problem for me, and getting advice on UtterAccess. (I'm typing some info for you, msg coming soon here.)
  17. J

    Local group [club] membership renewal by email, not post?

    Can anyone suggest why I'm not getting a response to registration from UtterAccess? Does it usually take a while to get a 'registered' confirmation email from them? I registered 2-3 hrs ago, and no sign yet.
  18. J

    Local group [club] membership renewal by email, not post?

    I see you were contributing to the thread on UtterAccess, the question was posed by Mike60Smart, and is actually my problem, which Mike was kind enough to take on and (with a heap of code from Daniel Pineault) return with an almost total solution for me. It only remains for the code to be...
  19. J

    Local group [club] membership renewal by email, not post?

    Is this not just attaching multiple files to any or all emails? I don't see any selection based on Boolean fields (in the Member table)?
Back
Top Bottom