Iniber eventos

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Para apagar:
Code:
application.enableevents = false
y obviamente
Code:
application.enableevents = true
para encenderlos otra vez.
 
Upvote 0
¿Usted quiere prevenir un cambio en tales controles? ¿O quiere permitir cambios pero que los cambios no provoquen eventos?
 
Upvote 0
Sí, es cierto. Se me olvidó eso. Entonces use una variable local para eso.
Code:
Private m_booEnableEvents As Boolean

Private Sub btnToggleEvents_Click()
    m_booEnableEvents = Not m_booEnableEvents
End Sub

Private Sub ListBox1_Change()
    If Not m_booEnableEvents Then Exit Sub
    '// ...code...
End Sub

Private Sub UserForm_Initialize()
    m_booEnableEvents = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,962
Messages
6,175,654
Members
452,664
Latest member
alpserbetli

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top