Thank you for your help
I probably dont know enough to answer your question
what my gut instinct tells me is to go with the simplest method
let me tell you a bit more what I have in mind
I have one large image onto which I want to overlay smaller images
I could probably just group the smaller images on the edge of the form
click the one I wish to select
then click on the spot on the larger image where I want to overlay it
then just have the code which you used to mix the images into one picturebox do its thing
how would I do that?
then I guess when I wanted to remove the overlays I would simply empty the picture box and reload the original background image





by: Idle_MindPosted on 2009-07-11 at 09:50:47ID: 24831165
Hey Dov_B,
Sorry I haven't gotten to this sooner. =\
The overlay code in the related question is NOT compatible with the code in this question.
There are two mutually exclusive approaches:
(1) Transparency thru floating windows (each PictureBox in its own form).
(2) Transparency thru composite imaging (as demonstrated in the related question).
With #2, you only have ONE PictureBox and all the different images are drawn into a single image. The code in this question is creating multiple PictureBoxes.
Do you want to extend the RELATED question code so that you can move around the images?
...or heavily modify this code to demonstrate #1?