There is indeed a way to Combine Pictures inside a PictureBox, I passed the night thinking of it and I found an easy solution to my very own post.

Why to publish the solution to this question I posted? I want others that may have the same doubts as me to know how to solve this issue. I am used not to be answered in the forums, so I try myself as I wait. I usually get to find myself an answer before they can give one... Anyway, too much talk here comes how to do it.

Lets think we have a PictureBox named "Mask", this will be where we will combine our two Pictures. The first Picture will be "Picture1" and the second Picture will be "Picture2". So we are going to use the PaintPicture Method of the PictureBox for this purpose. Finally we are going to Save this Image we Painted into the Picture property of "Mask". In order to make this work we will need to Have "Mask"'s AutoRedraw property set to True.

Remember the Method PaintPicture's sintax is:

object.PaintPicture picture, x1, y1, width1, height1, x2, y2, width2, height2, opcode

Where x1, y1 will be the point we will begin to draw the Picture on. Take in consideration x1 and y1 are needed to be written, they are not optional while the other arguments can be optional. width1 and height1 will be the Width and Height we want our Picture to take (This is really useful if you are going to stretch a Picture). x2, y2 will be the clipping coordinates of a region inside of the Picture and width2 and height2 are the source's Width and Height of our Picture.

Here is a sample of the code:

Mask.AutoRedraw = True
Mask.Picture = LoadPicture("")

Mask.PaintPicture Picture1.Picture, 0, 0
Mask.PaintPicture Picture1.Width, Picture1.Height, Picture2.width + 40, Picture2.Height + 40

Mask.Picture = Mask.Image


Finally all what is needed is to see how to make the UserControl recognize the MaskPicture you have. I will have to investigate about this, because it still shows all the control's background and not only the given by the MaskPicture property. If you have any idea of how to do this, please post it.