Hi,
I have a textbox where whenever I click to write an email, the cursor shows up below the word "regards", but I want the cursor to show up in between the words "regards" and "Dear Sir".
Here's a screenshot of the textbox:
[/URL][/IMG]
Here is the code that I used as well:
Is there a way to fix this?
If so, then thanks.
I have a textbox where whenever I click to write an email, the cursor shows up below the word "regards", but I want the cursor to show up in between the words "regards" and "Dear Sir".
Here's a screenshot of the textbox:
Here is the code that I used as well:
Code:
_Subject = "Invoice: " + frmcustomer.lstCustomer.column(0) & " of " + frmcustomer.lstCustomer.column(4)
weiter:
If cboTitleSalutation = "Mr" Then
frmEmail.txt_EMessage.Value = "Dear Sir " & Me.txt_name & "," & vbLf & vbLf & vbLf & vbLf & "Regards " & vbLf & Sheets("Setup").Range("C55")
frmEmail.txt_EMessage.SetFocus
ElseIf cboTitleSalutation = "Mrs" Then
frmEmail.txt_EMessage.Value = "Dear Mrs " & txt_name & "," & vbLf & vbLf
frmEmail.txt_EMessage.SetFocus
Else
frmEmail.txt_EMessage.Value = "Dear Sir or Madam, " & vbLf & vbLf
frmEmail.txt_EMessage.SetFocus
End If
frmEmail.txt_TO.Value = frmcustomer.txt_Email.Value
frmEmail.Show
End Sub
Is there a way to fix this?
If so, then thanks.