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
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