if I set the property Opacity = 0, a form becomes transparent... but become transparent all it controls, too!
how to make transparent ONLY the form and let the controls, labels, buttons etc. visible??
Printable View
if I set the property Opacity = 0, a form becomes transparent... but become transparent all it controls, too!
how to make transparent ONLY the form and let the controls, labels, buttons etc. visible??
Set the background colour of the form to an obscure colour that you won't ever want to use on the form, then set the form's transparencykey to that precise colour. Then every pixel of your selected colour will become transparent.
You also want to set your FormBorderStyle to None in your form properties.
soooooooooooooooooo simple! :thumb:
ty for the help, mates!