Control Transparency Issue...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • edoepke

    #1

    Control Transparency Issue...

    Visual Basic Questions NOT C# or C++ or VBScript:

    "Windows.Fo rms Not Web Applications"

    Does anyone have any code examples of making a TextBox and/or ListBox
    control transparent? I have tried using
    SetStyle(Contro lStyles.Support sTransparentBac kColor, True) and it only seems
    to work on the main form but not on the TextBox or ListBox controls. I've
    been fighting this problem for about two weeks. I'm not interested in
    creating a custom control, just want to use whats available in VB.

    Does anyone have any code examples of placing an image into (not on top of)
    a TextBox and/or ListBox control? These options are readily available in VB
    6 and someone at Microsoft has determined that these are not necessary in VB
    2005. Maybe they should ask us before they give us something new and better,
    eh?



  • Bobo

    #2
    Re: Control Transparency Issue...

    To the best of my knowledge the only object that has an opacity
    property is the form. I hope I'm wrong as I too would like to use this
    method of displaying information in a 'different' way. It wouldn't
    matter if it was VB or C++ it's Framework. VB6 didn't use Framework
    where the new versions do. So while somethings where gained with the
    'new' VB some were lost. You may need to build a custom control.

    Comment

    Working...