Notifications
Clear all

Mudar CheckBox sem ativar evento?

4 Posts
3 Usuários
0 Reactions
1,164 Visualizações
(@wilker12)
Posts: 36
Eminent Member
Topic starter
 

Olá,

Como posso dar ou tirar o valor checado do CheckBox via código sem disparar o evento Click?

Grato! :!:

 
Postado : 12/07/2018 11:29 am
(@skulden)
Posts: 170
Estimable Member
 

CheckBox.Value = 1

Se a resposta lhe foi útil, clique no joinha!

 
Postado : 12/07/2018 11:46 am
EdsonBR
(@edsonbr)
Posts: 1057
Noble Member
 
Sub AlterarValorSemDispararEvento()
  Application.EnableEvents = False
    Plan1.CheckBox1.Value = True
  Application.EnableEvents = True
End Sub

 
Postado : 12/07/2018 11:51 am
(@wilker12)
Posts: 36
Eminent Member
Topic starter
 

Sozinho não funcionou não, EdsonBR.
Aí, coloquei dentro do Change um "If Application.EnableEvents Then", aí deu certo.
Estranho... Mas Vlw

 
Postado : 12/07/2018 12:46 pm