Opacity property and Remote Access program

J

Juleke

Hello,

When I'm using the opacity property for showing a form

I can see my application on the computer. But If I'm connecting to this
machine via Remote Access (VNC). I see nothing of my application on my
remote screen (just the app on the taskbar).

Somebody have an idea ?

Thanks in advance

Juleke

Dim dblOpacity As Double

frmMain.Opacity = 0

frmMain.Show()

For dblOpacity = 0 To 1 Step mcdblStep

frmMain.Opacity = dblOpacity

Threading.Thread.Sleep(mcintSleep)

Next

frmMain.Opacity = 1
 
T

Tom Spink

I don't think the VNC protocol supports transparency.

--
HTH,
-- Tom Spink, Über Geek

Please respond to the newsgroup,
so all can benefit

"Maybe it's a game called 'Punish the User'"


: Hello,
:
: When I'm using the opacity property for showing a form
:
: I can see my application on the computer. But If I'm connecting to this
: machine via Remote Access (VNC). I see nothing of my application on my
: remote screen (just the app on the taskbar).
:
: Somebody have an idea ?
:
: Thanks in advance
:
: Juleke
:
: Dim dblOpacity As Double
:
: frmMain.Opacity = 0
:
: frmMain.Show()
:
: For dblOpacity = 0 To 1 Step mcdblStep
:
: frmMain.Opacity = dblOpacity
:
: Threading.Thread.Sleep(mcintSleep)
:
: Next
:
: frmMain.Opacity = 1
:
:
:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top