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 =...
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...
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...
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...
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...