Recent content by mosheva

  1. M

    sending email using dynamic body text

    Hi, I getting a run time error '438' - Object doesn't support this property or method
  2. M

    sending email using dynamic body text

    Hello Again! Using the my code, how can I add attachment? I want to be able to output a pdf file and then attach it to the new mail. Here is the code again: Private Sub Mail_test3_Click() Dim olApp As Outlook.Application Dim objMail As Outlook.MailItem Set olApp =...
  3. M

    Help - Show the last row in text box

    Thanks! Its kinda help but not exactly what I was looking for... I want that when I leave the Text Box it will stay on the last row.
  4. M

    Help - Show the last row in text box

    Hello! I have build a form that as bound text boxes (as memo to have more than 250 characters in the text box). The problem is that when I exit the text box typing mode and move to a differnt field the text box shows the first lines that I typed in. I want to be able to show the last line as...
  5. M

    sending email using dynamic body text

    Thanks all! I manage to do what I looked for... Private Sub Mail_test3_Click() Dim olApp As Outlook.Application Dim objMail As Outlook.MailItem Set olApp = Outlook.Application 'Create e-mail item Set objMail = olApp.CreateItem(olMailItem) With objMail 'Set body...
  6. M

    sending email using dynamic body text

    Hello! I look at the link but haven't found what I'm looking for... I thought about sending a report but if I'm using the access email tool I either get the full report of all the table or get the report as attach file. Can I build a custom report that will not show as attach file? Edit: I...
  7. M

    sending email using dynamic body text

    Hello! I'm trying to create a send via email function that will use specific body template that is also field with the data from the current form that is opened. Now i'm using the Do.Cmd.Sendobject function but it is very limited as I want to be able to use the BOLD function on certain fields...
Back
Top Bottom