Search results

  1. C

    IS it possible to convert the selected number in a drop down list to negative?

    Add a Button to the Form Insert the following Code in the "On Click" event Me.Numberfield = -(Me.Numberfield) DoCmd.RunCommand acCmdSaveRecord This will do the inverse as well should you need to undo the "negativizing" of the number.
  2. C

    Using a Word doc as an email template

    Here's the answer to the problem I was experiencing earlier: I ended up setting the template via Outlook (.oft) instead of Word (.docx) easy enough from there... QuotedID = Me.QuoteID DoCmd.OpenQuery "QuoteStatusDeliveryUpdate" Dim myPath As String Dim strReportName As String myPath...
  3. C

    Using a Word doc as an email template

    1 more post and here's the code...
  4. C

    Using a Word doc as an email template

    2 more posts till the code can be posted...
  5. C

    Using a Word doc as an email template

    I don't have enough posts to post code yet...
  6. C

    Using a Word doc as an email template

    Private Sub Command86_Click() QuotedID = Me.QuoteID DoCmd.OpenQuery "QuoteStatusDeliveryUpdate" Dim myPath As String Dim strReportName As String myPath = "J:\AccessApp\QuotesTemp\" strReportName = "Finishing-TechnologySalesQuote" & ".pdf" DoCmd.OutputTo...
  7. C

    Using a Word doc as an email template

    What I'd like to do is use a Word 2007 (.docx) file as the body of the email message. (It has a company logo and a html link in the file) My code works perfectly if I type a string of text for the body, however, I'd like to dress up the email and have it send an email with the logo & link...
  8. C

    Setting a "FROM" address in outlook automation code

    Is there a way to attach the already open MS Access report to this email without saving the report to the hard drive first? I'm not going to need the report saved on the hard drive after the email is sent... and I'd really like to avoid having to write code to tell it where & how to save the...
  9. C

    Setting a "FROM" address in outlook automation code

    I'd like to send an open report as an attachment to this email without saving it to the hard drive first. I can send emails with attachments all day with the "Sendobject" functionality but that function doesn't allow the "From" field to be set... (Hence the above code) Now that I've set the...
  10. C

    Setting a "FROM" address in outlook automation code

    All, I've been searching all morning for a way to set the "FROM" email address in a new email message in Outlook 2007 that's automated from Access 2007. FYI - I'm writing this in a test DB so I can transfer the working code into a functional DB. Here's the code I have: (I placed a ' in the...
  11. C

    Access to Outlook Calendar for Alert or Alarm Message Reminders

    I made one quick modification adding "StartTime" and "EndTime" fields to the form, Setting them as "Unbound" Then for the [ApptLength] I pasted the following formula into the "Default Value" "=DateDiff("n"[EndTime],[StartTime])" This sets the [Apptlength] to automatically calculate the...
Back
Top Bottom