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 98007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T00:06:49+00:00 2026-05-11T00:06:49+00:00

I wish to display a list of letters from a through z on a

  • 0

I wish to display a list of letters from a through z on a form. Each letter needs to be clickable with that value being passed as a click argument. Aside from creating 26 letters and using the click event of each letter does anyone know of a quick way to do this? I know how to load dynamic controls etc and how to do it that way. Just wondering if anyone knew of a clever way to do this?

Cheers

  • 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. 2026-05-11T00:06:50+00:00Added an answer on May 11, 2026 at 12:06 am

    You can use a FlowLayoutPanel and a loop like this:

    private void button1_Click(object sender, EventArgs e) {   flowLayoutPanel1.FlowDirection = FlowDirection.LeftToRight;   flowLayoutPanel1.AutoSize = true;   flowLayoutPanel1.WrapContents = false; //or true, whichever you like   flowLayoutPanel1.Controls.Clear();    for (char c = 'A'; c <= 'Z'; c++)   {     Label letter = new Label();     letter.Text = c.ToString();     letter.AutoSize = true;     letter.Click += new EventHandler(letter_Click);     flowLayoutPanel1.Controls.Add(letter);    } }  private void letter_Click(object sender, EventArgs e) {   MessageBox.Show('You clicked on ' + ((Label)sender).Text); } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 74k
  • Answers 74k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer The boss man had to increase the amount of ram… May 11, 2026 at 2:21 pm
  • added an answer I finally found it in $BEA-HOME/modules/com.bea.core.weblogic.rmi.client_1.4.0.0.jar It seems in 10.3… May 11, 2026 at 2:21 pm
  • added an answer Because you are adding this class in lib subdirectory of… May 11, 2026 at 2:21 pm

Related Questions

In a .NET 1.0 C# application, I wish to display a list of files
I am using a List Control to display a representation of elements within a
I am struggling with the best way to handle a WPF application that has
Background I have a page on my ASP.NET MVC web app for users to

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.