i have a problem with an userform on excel. In the userform i have a textbox2 that value is a result of some combobox. then i changed the format font of the textbox2 from the property and that's work when i have the results the textbox2 shows the correct font but if i copy it with CTRL+C and the try to paste on excel or outlook mail the font changes in calibri... why this happen? i also tryed with automatic copytoclipboard i'll paste the code.
Dim clipboard As MSForms.DataObject
Set clipboard = New MSForms.DataObject
clipboard.SetText Me.TextBox2.Text
clipboard.PutInClipboard
That's works, because if i press CTRL+V it paste the result in textbox2 anyway it changes the font format...
Thanks in advance!
PS: i prefer to find a solution that permit me to copy manually from the textbox2 keeping the font format, but if it's impossible a code solution will be fine too. thanks a lot!