Quote:
> How in the world do you make a window transparent but still be able to
see
> graphics on it. This is used in some screen savers that I've seen, but
I've
> never been able to find any documentation on it. Can you even do this
with
> Visual Basic 5 in Windows 95? If so, how???
It sounds to me like you're talking about screen savers that draw on the
"desktop". I put that in quotes because they don't really draw there; they
capture the screen, put it on a form, and then draw on that.
As for making a window truly transparent: It is possible with an API
call or two (or with a UserControl in VB5, a property), but you can't
display graphics methods on it that way.
-- Ben