Renato Knupp Posted November 14, 2011 Report Share Posted November 14, 2011 Pessoal, no vb tem um camando para que o form não fique piscando enquanto algo está sendo executado, é esse:Application.ScreenUpdating = Falsealguém sabe se no c# tem algo parecido? Quote Link to comment Share on other sites More sharing options...
0 Xistyle Posted November 16, 2011 Report Share Posted November 16, 2011 Renato, essa é uma função específica do VBA/VB. Veja se o comando abaixo tem uma funcionalidade semelhante:try { Globals.ThisAddIn.Application.ScreenUpdating = false; ... } ... finally { Globals.ThisAddIn.Application.ScreenUpdating = true; } Quote Link to comment Share on other sites More sharing options...
Question
Renato Knupp
Pessoal, no vb tem um camando para que o form não fique piscando enquanto algo está sendo executado, é esse:
Application.ScreenUpdating = False
alguém sabe se no c# tem algo parecido?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.