In Microsoft Access there was an easy method to turn off screen updates by setting Echo = False. Is there an equivalent in VB.NET for WinForms? I’ve got a situation where I’m trying to prevent users from seeing controls flickering while they’re being updated. I could probably solve the problem by coding it differently, but would rather avoid it if I can.
Share
What you’re looking to do is suspend and resume the redrawing of your form. There isn’t a managed API for this, but it’s a fairly trivial P/Invoke to do it. I don’t remember the VB.NET syntax for declaring external functions right off the top of my head, but this C# example should give you the information that you need to know.