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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T17:41:05+00:00 2026-05-31T17:41:05+00:00

I have a form that has 90 buttons on it, one button for each

  • 0

I have a form that has 90 buttons on it, one button for each day. When a user first signs into the program, they enter their user name and a date. I want to take the date the user entered and auto fill the text fields of each button. For example the text for btnDay1 would be 18 Mar, btnDay2 would be 19 Mar, etc., etc.

Someone suggested using this code:

DateTime time = dateTimepicker1.Value; //this is user selected date, you can use your own way
foreach(Button b in this.Controls.OfType<Button>())
{
    if(b.Name != "button1" || b.Name != "button2")
    {
         b.Text = time.Date.ToString("dd MMM");
         time = time.Date.AddDays(1); //setting for next button        
    }
}

but the compiler tells me that dateTimepicker1 doesn’t exist in its current content. I have never used dateTimepicker and it’s not in my textbook so I am unfamiliar with how to use it. I looked at the MSDN library but the example there is so completely different than DateTime time = dateTimepicker1.Value that all it does is leave me more confused than I was before.

  • 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-31T17:41:06+00:00Added an answer on May 31, 2026 at 5:41 pm

    if you have a textbox to get the inputs from the user then

    DateTime time = DateTime.Parse(txtStartDate.Text); 
        foreach(Button b in this.Controls.OfType<Button>())
        {
            if(b.Name != "button1" || b.Name != "button2")
            {
                 b.Text = time.Date.ToString("dd MMM");
                 time = time.Date.AddDays(1); //setting for next button        
            }
        }
    

    It expects that you have two buttons button1 and button2 that need to be avoided.

    To make interface better, you can put a date picker instead of the textbox and change its name to dateTimepicker1 and use your code in the question.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that has two buttons on it, one yes, one no,
I have a web form that has 2 radio buttons, depending on which one
I want to use a form that has two submit buttons. Each button calls
I have a form in C# that has a button that, when clicked, I
I have a site that has a simple HTML button in a form. All
I have a rails 3 form that has 100+ questions. Each time a radio
I have a simple form that lists user names and for each user, the
I have a form that has nine (yes 9) buttons and I have been
I have a form that has multiple fields, and for testing purposes is there
I have a form that has a public property public bool cancelSearch = false;

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.