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

  • Home
  • SEARCH
  • 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 3962710
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:07:43+00:00 2026-05-20T03:07:43+00:00

I want to pass another value to the method LeCmb_Statut_SelectedIndexChanged, how can I proceed?

  • 0

I want to pass another value to the method LeCmb_Statut_SelectedIndexChanged, how can I proceed?

I have the code:

SqlDataReader reader = comm.ExecuteReader(); 
while (reader.Read())
{
   ...
   DropDownList LeCmb_Statut = new DropDownList();
   string tempLabel = reader["LIBELLE"].ToString();
   string templabelVeh = reader["LIBVEH"].ToString()
}

How can I pass these temp variables into LeCmb_Statut_SelectedIndexChanged?

LeCmb_Statut.SelectedIndexChanged += new EventHandler(LeCmb_Statut_SelectedIndexChanged);
  • 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-20T03:07:44+00:00Added an answer on May 20, 2026 at 3:07 am

    You could use the Tag property of dropdownlist.
    first, create a simple DTO:

    public class LabelDTO
    {
       public string Label {get;set;}
       public string LabelVeh {get;set;}
    } 
    

    then:

    while (reader.Read())
    {
       ...
       DropDownList LeCmb_Statut = new DropDownList();
       LabelDTO lbl= new LabelDTO(){Label=reader["LIBELLE"].ToString(), LabelVeh=reader["LIBVEH"].ToString()};
    
        LeCmb_Statut.Tag=lbl;
    }
    

    then inside the LeCmb_Statut_SelectedIndexChanged:

    LeCmb_Statut_SelectedIndexChanged (object sender, System.EventArgs e)
    {
        LabelDTO labelDTO= ((DropDownList)sender).Tag as LabelDTO ;
        if (labelDTO!=null)
         {
            ///here you can use the label and labelVeh properties.
    
         }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to pass any enum value to method in utility class and get
I want to pass Value from Constructor in my Main Class to another Class.
I want to pass a value from one Activity to another to update an
I want to pass an integer value to a form in .Net so that
I want to pass an enum value as command parameter in WPF, using something
I want to pass a byte[] to a method takes a IntPtr Parameter in
I am writing PHP code where I want to pass the session id myself
I have a setter method (setMinimumNumberOfSides) that I want to override after using synthesize.
When you want a certain task to be executed by another thread, you can
If all tables I want to delete from have the column gamer_id can i

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.