> Can you make transparent background BMP files to be used in a Help File.
Yes, you can do this, but only for 16-colour bitmaps. The colour that is
made transparent is the highest numbered colour in the palette. That's to
say, if you view the palette for the image in a bitmap editor such as Paint
Shop Pro, the colour numbered 15 is the one that will be replaced by the
background colour of the help window. (The palette numbers run from 0 to
15.) In the standard Windows 16-colour palette, the default colour in this
position is white, but you can trick WinHelp into painting out a
different colour by editing the palette and making your chosen colour the
final one. This is useful if the bitmap contains white areas that you don't
want to make transparent.
When coding the {bmx} statement for the graphic in the source text file for
your WinHelp project, you just add the letter "t" to make the graphic
transparent. For example:
{bmct logo.bmp}
Finally, if the background colour is dithered, WinHelp will pick the solid
colour closest to that dither for the background of the bitmap.
Pete