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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T00:18:18+00:00 2026-06-17T00:18:18+00:00

Ok I need help if I have this code and I wanted to know

  • 0

Ok I need help if I have this code and I wanted to know if there was a way to detect if the number is greater than the one in the textbox?

if (textbox1.text == "2")
{
     //code
}

and I was wondering is there anyway to detect if the number is greater than that so say textbox1.text = "5" it is greater than 2 so therefore it does the code from the if command?

  • 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-06-17T00:18:20+00:00Added an answer on June 17, 2026 at 12:18 am
    int value;
    if (Int32.TryParse(textbox1.Text, out value))
    {
       if (value > 2)
         // code
    }
    else
    {
        // not a number in textbox
    }
    

    Sample for your real application:

    TimeSpan timeOfDay = DateTime.Now.ToLocalTime().TimeOfDay;
    
    if (8 < timeOfDay.Hours && timeOfDay.Hours < 16)
    {
        // day
    }
    else
    {
        // night
    }
    

    You can create extension method:

    public static bool IsDayTime(this DateTime date)
    {
        TimeSpan timeOfDay = date.TimeOfDay;
        return 8 < timeOfDay.Hours && timeOfDay.Hours < 16;
    }
    

    And use it this way:

    var date = DateTime.Now.ToLocalTime();
    var file = Path.Combine(Folder, date.IsDayTime() ? "Day.bmp" : "Night.bmp");
    picThumbnail.ImageLocation = file;
    picThumbnail.SizeMode = PictureBoxSizeMode.Zoom;
    SystemParametersInfo(20, 0, file, 0x01 | 0x02);
    var rkWallPaper = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", true);
    rkWallPaper.SetValue("WallpaperStyle", 2);
    rkWallPaper.SetValue("TileWallpaper", 0);
    rkWallPaper.Close();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have this code, and need help with the logic end. I would like
I'm not good at t-sql, so I need help. I have this code I
I have this JUnit test that I need help developing a Interface and Class
I need some help with a LINQ query in VB.Net, please. I have this
Hello i am in desperate need of help on this i have an image
I am new to android and need help on this. I have two views
I really need help here. I'm desperate at this point. I have NSOperation that
Need some help to solve this. I have a gridview and inside the gridview
I really need some help with this as I have been trying to fix
I need some help in solving this problem. We have a large amount of

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.