The format for mixed graphics and text is rich text format (RichTextFormat, referred to as RTF), which is the format used in Word.
In VB, you can use the rich text box control (ie RichTextBox) to mix pictures and text, and then use the following statement to copy the pictures and text together to the clipboard:
Clipboard.SetText RichTextBox1.TextRTF, vbCFRTF
(Please note that the last parameter must be vbCFRTF)
Then you can paste pictures and text in Word with one click .
If you don’t want to use a rich text box for transfer, then you can directly construct rich text according to the syntax of rich text. You can ask Du Niang yourself about this, and I won’t go into details here.