Click to See Complete Forum and Search --> : Cut & Paste in PictureBox?


_Nathan.
January 14th, 2000, 07:59 AM
There are so many questions I would love to ask you guys, but I will stick to one.

How can I let a user cut and paste from a picture box?

The program I am workng on is a simple one that sorts times from lowest to highest. The data is then out put with html added so it can then be pasted straight into a web page. Right now I can only dump the data into a text box which is limiting.

Thank you.

Aaron Young
January 14th, 2000, 08:53 AM
The only thing you can Copy from a Picturebox is a Static Image, but what you could do is manually place the HTML Code on the Clipboard for Pasting into an HTML Editor, etc, using the Clipboard Object, ie.

Clipboard.SetText sHTMLCode, vbCFText





Aaron Young
Analyst Programmer
ajyoung@pressenter.com
aarony@redwingsoftware.com

_Nathan.
January 14th, 2000, 08:31 PM
Thank you, I did not even think of using the clipboard in that way.