Hi,
Found a bit of VBA code to place text in the subject line of Outlook:
Sub New_Subject_Email()
Dim MItem As MailItem
Set MItem = Application.CreateItem(olMailItem)
MItem.subject = "36355 XXXXXXXXXX - "
MItem.Display
End Sub
It Works, but I would love to have the cursor ready (blinking) to type after the "36355 XXXXXXXXXX - " when I use the TAB key to activate the Subject line.
How would I change the VBA code accordingly?