Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 623231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T19:04:14+00:00 2026-05-13T19:04:14+00:00

I try to set like this: ListBox lb = new ListBox(); /* Bind datas

  • 0

I try to set like this:

ListBox lb = new ListBox();
/* Bind datas */
lb.SelectedItem = someObject;

lb truely selected the someObject item. But it would select the 1st item at first. And that motion cause SelectedIndexChanged event which I don’t wanted.

I just want SelectedIndexChanged be called when someObject selected.
How could I do to fix this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T19:04:14+00:00Added an answer on May 13, 2026 at 7:04 pm

    Use a flag on the form/control to disable the event when you don’t want it to fire.

    public class Form1 : Form
    {
        private bool itemsLoading;
    
        public Form1()
        {
            InitializeComponent();
            LoadListItems();
        }
    
        private void LoadListItems()
        {
            itemsLoading = true;
            try
            {
                listBox1.DataSource = ...
                listBox1.SelectedItem = ...
            }
            finally
            {
                itemsLoading = false;
            }
        }
    
        private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (itemsLoading)
                return;
    
            // Handle the changed event here...
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i try to set my script to run something like this ruby Script.rb --ip
Usually, I try to set my folders to have permission 775, but some web-hosting
I try to write a owner draw listbox with WTL. My code looks like
Basically I have 2 classes, Manifest and BrowserAction, set out like this: public class
I am trying to build a TreeView and have it set up like this
Trying to set this textbox <%= Html.TextBoxFor(m => m.IndicationCalculatorNewGroupName, new {propertyName = IndicationCalculatorNewGroupName, onchange
I am aware that there other questions like this, but their solutions do not
I am using Jeff Sharkey's SeparatedListAdapter and I would like to set the text
I have a modal set up like this: Despite appearances, the first two fields
I try to set the anchorPoint property, in order to rotate a view by

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.