Let me start by saying that I have successfully used the Form.Opacity
property in many other windows in my application.

I have several forms that inherit from a base class form that do not seem to
respond to the Opacity property. I've tried setting it in the designer and
programatically. I've inspected the property in the debugger and it shows up
at Opacity = .75, as desired.

As I said, I can successfully put other windows that have varying levels of
transparency up at the same time which work just fine.

Any help would be appreciated.

Thanks,
Davey

Re: opacity property not working by Stoitcho

Stoitcho
Tue Oct 19 17:26:05 CDT 2004

Hi David,

Is the other applications work on the same machine?
I'm asking because the Opacity uses layered windows and they are supported
by w2k and higher. On win9x that proeprty shouldn't work.
Can you reproduce that problem in a test application?


--
Stoitcho Goutsev (100) [C# MVP]


"David Schmidt" <dave@petcominc.com> wrote in message
news:%23U2DOiitEHA.2128@TK2MSFTNGP11.phx.gbl...
> Let me start by saying that I have successfully used the Form.Opacity
> property in many other windows in my application.
>
> I have several forms that inherit from a base class form that do not seem
> to
> respond to the Opacity property. I've tried setting it in the designer and
> programatically. I've inspected the property in the debugger and it shows
> up
> at Opacity = .75, as desired.
>
> As I said, I can successfully put other windows that have varying levels
> of
> transparency up at the same time which work just fine.
>
> Any help would be appreciated.
>
> Thanks,
> Davey
>
>



Re: opacity property not working by David

David
Tue Oct 19 17:36:49 CDT 2004

Thanks for the quick response.

I have the problem on WindowsXP and Windows2000. I am aware of the
limitiations of non-Win2K based operating systems.

I'll work up a simplified test case.

Thanks,
Dave



"Stoitcho Goutsev (100) [C# MVP]" <100@100.com> wrote in message
news:OuxZhqitEHA.904@TK2MSFTNGP11.phx.gbl...
> Hi David,
>
> Is the other applications work on the same machine?
> I'm asking because the Opacity uses layered windows and they are supported
> by w2k and higher. On win9x that proeprty shouldn't work.
> Can you reproduce that problem in a test application?
>
>
> --
> Stoitcho Goutsev (100) [C# MVP]
>
>
> "David Schmidt" <dave@petcominc.com> wrote in message
> news:%23U2DOiitEHA.2128@TK2MSFTNGP11.phx.gbl...
> > Let me start by saying that I have successfully used the Form.Opacity
> > property in many other windows in my application.
> >
> > I have several forms that inherit from a base class form that do not
seem
> > to
> > respond to the Opacity property. I've tried setting it in the designer
and
> > programatically. I've inspected the property in the debugger and it
shows
> > up
> > at Opacity = .75, as desired.
> >
> > As I said, I can successfully put other windows that have varying levels
> > of
> > transparency up at the same time which work just fine.
> >
> > Any help would be appreciated.
> >
> > Thanks,
> > Davey
> >
> >
>
>



Re: opacity property not working by Herfried

Herfried
Wed Oct 20 06:26:43 CDT 2004

"David Schmidt" <dave@petcominc.com> schrieb:
> Thanks for the quick response.
>
> I have the problem on WindowsXP and Windows2000. I
> am aware of the limitiations of non-Win2K based operating
> systems.

Are you running Windows with 32 bpp color depth?

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Re: opacity property not working by David

David
Wed Oct 20 10:34:35 CDT 2004

I figured out the difference in my forms' transparency.

Apparently, if you set the Form.MdiParent property, the opacity property is
rendered impotent.

Does anyone know if there is a way to allow a form that is used as an mdi
child to be transparent?

BTW- I am using 32bpp color depth.

-Dave Schmidt


"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:eJrYueptEHA.272@TK2MSFTNGP12.phx.gbl...
> "David Schmidt" <dave@petcominc.com> schrieb:
> > Thanks for the quick response.
> >
> > I have the problem on WindowsXP and Windows2000. I
> > am aware of the limitiations of non-Win2K based operating
> > systems.
>
> Are you running Windows with 32 bpp color depth?
>
> --
> Herfried K. Wagner [MVP]
> <URL:http://dotnet.mvps.org/>