working with clipboard pictures?

working with clipboard pictures?

Anonymous
Not applicable
290 Views
1 Reply
Message 1 of 2

working with clipboard pictures?

Anonymous
Not applicable
Hi All,

Acad2002 VBA

How do we write code to:

Send a portion of a picture control in one form to the clipboard and paste
from the clipboard to a picture control in another userform.

TIA,

Kevin.
0 Likes
291 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
I don't think it's the clipboard you want to use, but probably a variable
within your code. Try declaring an image variable, assigning the picture to
it, then transferring it to the new form. Depending on how your code is
structured, you might just be able to do something like form1.img1.Picture =
form2.img1.Picture.

HTH,
Kevin

"Kevin Barnett" wrote in message
news:1E54DCFB92C69D0C05BCC4827AE0D8B6@in.WebX.maYIadrTaRb...
> Hi All,
>
> Acad2002 VBA
>
> How do we write code to:
>
> Send a portion of a picture control in one form to the clipboard and paste
> from the clipboard to a picture control in another userform.
>
> TIA,
>
> Kevin.
>
>
>
>
0 Likes