|
-
Jan 17th, 2001, 08:12 AM
#1
Thread Starter
Evil Genius
Is it possible to set the frame control to transparent in any way please?
-
Jan 17th, 2001, 08:37 AM
#2
Lively Member
Check out this link, it tells you how do make a form transparent :
http://www.vb-world.net/tips/tip76.html
Breaker
(VB 6.0 ENT SP3 WIN 2000 PROF)=> WORK
(VB 6.0 ENT SP3 WIN ME)=> HOME -> Upgrade to .NET is coming
-
Jan 17th, 2001, 08:45 AM
#3
Addicted Member
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:
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
Other than that, I don't think there is a way to make the control truely transparent.
Hope this helps.
JC.
-
Jan 17th, 2001, 08:46 AM
#4
Thread Starter
Evil Genius
Cheers for that, I'm after the Frame control on the form rather than the actual form itself, any ideas please?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|