D
dan
Why when I execute this code would a change event be
triggered for the listbox?
Private Sub lstBoxDateChg_Enter()
application.EnableEvents = False
lstBoxDateChg.Value = Range("'Print - View Selection'!
$AA$1").Text
application.EnableEvents = True
End Sub
This is the event that gets triggered:
Private Sub lstBoxDateChg_Change()
How can I load an initial value without this happening?
triggered for the listbox?
Private Sub lstBoxDateChg_Enter()
application.EnableEvents = False
lstBoxDateChg.Value = Range("'Print - View Selection'!
$AA$1").Text
application.EnableEvents = True
End Sub
This is the event that gets triggered:
Private Sub lstBoxDateChg_Change()
How can I load an initial value without this happening?