Thanks everyone for the help, I decided to go with what I class as the simplest option,
for this, in the end if was Toms answer.

I created a new image and gave it a pure white background, any pixels in that image that I needed to be white; I gave them a colour, just off white (so the human eye cannot even see the difference, but RB does). Saved this as a PNG; then I imported the picture 'MyImage' into the project.

In the Open even on the Canvas, I simply added the following:

  Dim p As Picture

  p = New Picture(59,61,32) // Set the Width, Height and Colour Depth
p.Transparent = 1 // Set the background image to Transparent, the background must be pure white. p.Graphics.DrawPicture MyImage,0,0 // Draw the imported picture 'MyImage ' at the coordinates 0,0

  // Assign the Image to the backdrop property of this Canvas.
  Me.Backdrop = p

I hope this is the correct place to place this?

Mark
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to