Windows Form - Hiding intermediate actions.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In Microsoft Access, I use

Application.Echo False
......code that causes form to flash
Application.Echo True

to hide intermediate actions while a form is visible. I cannot find an
equivalent command in VB.Net. Specifically, I am changing tabs on the form
and I see significant flashing before reaching the final view.

Thank you for any help.
 
genojoe said:
In Microsoft Access, I use

Application.Echo False
.....code that causes form to flash
Application.Echo True

to hide intermediate actions while a form is visible. I cannot find an
equivalent command in VB.Net. Specifically, I am changing tabs on the
form
and I see significant flashing before reaching the final view.

If you want to disable .NET's layouting mechanism:

\\\
Me.SuspendLayout()
....
Me.ResumeLayout()
///

For disabling updating:

Preventing controls from redrawing
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=disableredrawing&lang=en>
 

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

Back
Top