Transparent Button?
-
How could I make a transparent button so that it is not shown in a vb. net form, but I should be able to click it on its current position?
cezzzar
-
How could I make a transparent button so that it is not shown in a vb. net form, but I should be able to click it on its current position?
cezzzar
By setting the .Opacity value. You'll have to set it to 1, and not 0. If you set Opacity to 0, the button kills itself and is no longer usable. I'm sorry, excuse that answer. .Opacity is not a property of the Button. I don't believe you can do this with the native .NET button class. You may have to use an image-replacement, or write a new button class that inherits from a .Opacity-enabled base-class. More Information: 1. http://www.codeproject.com/buttonctrl/EasyTransparentBut.asp
Jonathan Sampson www.SampsonResume.com
-
How could I make a transparent button so that it is not shown in a vb. net form, but I should be able to click it on its current position?
cezzzar