Form starts form = slow execution

K

KS

I have a button on a form that starts another form with this click-event
code:

Dim frmH As frmHelp
If IsNothing(frmH) OrElse frmH.IsDisposed Then
frmH = New frmHelp()
Me.Opacity = 0.9
frmH.ShowDialog()
End If

and the other form I close with Me.Close() and them the application work
very, very slow - why ?

KS, Denmark
 
V

Vijayakrishna Pondala

The reason for the slowing might be something else.

Thanks,
Vijaya Krishna P.
 
K

KS

Yes it can but I shure it's NOT sothing else because I have tried to just
open an empty form - only with the close-button on it - some result - very
slow execution after the second form closes !

I say 'slow' because I have some panels moving around on the form and the
panels moves 'normaly' before and very slow AFTER the form closes - that's
why I say very slow execution.

What is wrong here ?

KS, Denmark
 
K

KS

I found out - it's the Opacity=0.9 that's slows down !

If I comment it out - no problems !

KS, Denmark
 
K

KS

It's (too) a well know problem !

KS, Denmark

KS said:
I found out - it's the Opacity=0.9 that's slows down !

If I comment it out - no problems !

KS, Denmark
 

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