Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Clipboard question 1

Status
Not open for further replies.

pierrotsc

Programmer
Nov 25, 2007
358
0
0
US
I use the clipboard to manipulate images. Every time I assign an image to the clipboard, does it overwrite the previous one or does it keep increasing the size of the clipboard by stacking up all the images?
If it does, I would free the clipboard every time I do a new assign but do not want to do it if I do not have to.
Thanks.
 
Overwrite.

Is not necessary, but the code to clear the previous contents of the clipboard is the following:

Code:
Clipboard.Clear;

I hope this helps.


Imobiliárias em Suzano
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top