Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
675
UltraComboEditor ValueChanged fires twice
posted

I'm setting the value of comboeditor on the EditorButtonClick event, but it causes my Valuechanged event to be fired twice.

        private void cbForecastNumbers_EditorButtonClick(object sender, Infragistics.Win.UltraWinEditors.EditorButtonEventArgs e)
        {
            this.cbForecastNumbers.Value = something;
            }
        }

        private void cbForecastNumbers_ValueChanged(object sender, EventArgs e)
        {
           //Alert
        }

Why is this happening?

Parents
No Data
Reply Children
No Data