Results 1 to 4 of 4

Thread: Hard one - Invisible Frame

  1. #1

    Thread Starter
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    Is it possible to set the frame control to transparent in any way please?

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

  2. #2
    Lively Member Backbraker's Avatar
    Join Date
    Dec 2000
    Location
    Lummen, Belgium
    Posts
    117
    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

  3. #3
    Addicted Member jcouture100's Avatar
    Join Date
    Aug 1999
    Posts
    141
    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.
    JC

  4. #4

    Thread Starter
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    Cheers for that, I'm after the Frame control on the form rather than the actual form itself, any ideas please?

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width