Sets the color that will be used as the transparent color in the Form's ForeLayer.
Syntax: SetTransparentColor (R,G,B | Color Constant)
Each form can include two graphical layers.
The ForeLayer supports transparency.
SetTransparentColor set the transparent color.
This keyword must be used before Form.ForeLayer = True.
Example:
Sub App_Start
SetTransparentColor (cWhite)
Form1.ForeLayer = True
Form1.Show
End Sub