VB6: I am able to write to clipboard using Clipboard.SetText. But I want to write in steps. Like first String1. Then append String2 after String1. Is there any way to do that?
|
|
|||
|
|
|
Rob's answer is good. My additional advice is to always use E.g. if the user first copies "text one" in Word, then uses your app to copy "text two", then uses Paste in Word: it will paste "text one". This happens because the clipboard still contains the formatted string "text one" from Word, and Word uses that formatted text in preference to your unformatted text. |
||
|
|
|
|
Keep track of what you've written to the clipboard with another string, which I'll call You can set Doing it this way will eliminate any possible problems with other programs overwriting the clipboard before you're done appending your strings. |
||
|
|
|
|
You could just write your first bit, then later read the clipboard and append to what you read and set the text again...the only issue is that some other app might write to the clipboard during this time. |
||
|
|
