Is it possible to set the frame control to transparent in any way please?
Printable View
Is it possible to set the frame control to transparent in any way please?
Check out this link, it tells you how do make a form transparent :
http://www.vb-world.net/tips/tip76.html
If you just want to set the frame so there is not border line around it, set the BorderStyle property to Zero/None.
If you want to be able to see objects that are positioned under the frame, change the ZOrder of the object.
Example:
Other than that, I don't think there is a way to make the control truely transparent.Code:'Sets the textbox to the top of the zorder.
Text1.Zorder 0
'Sets the textbox to the bottom of the zorder.
Text1.Zorder 1
Hope this helps.
JC.
Cheers for that, I'm after the Frame control on the form rather than the actual form itself, any ideas please?