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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:09:38+00:00 2026-05-27T17:09:38+00:00

Hi all i am doing a program to round the text entered in a

  • 0

Hi all i am doing a program to round the text entered in a text box . Sample inputs

Entered value      output value
  100                100.00
   50                 50.00

Like this i would like to format my text box value on textBox1_Leave event

I tried this but didn’t work for me

private void textBox1_Leave(object sender, EventArgs e)
{
    string str = string.Format(textBox1.Text, "##.00");
    textBox1.Text = str;
}

Can any one help me

  • 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-27T17:09:39+00:00Added an answer on May 27, 2026 at 5:09 pm

    You’ll need to convert that string to an number, then call Format. Also, you were using format incorrectly. You’ll need to use a placeholder, like this

    string str = String.Format("{0:F2}", Double.Parse(textBox1.Text));
    textBox1.Text = str;
    

    Naturally this will puke if you put in non-numeric input. To allow for this, you can do some basic validation

    double d = 0;            
    textBox1.Text = 
           Double.TryParse(textBox1.Text, out d) ? String.Format("{0:F2}", d) : "0";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For a sample program, though this is doing all good for me. But I
I'm doing a program and I would like to output a menu with two
I'm probably doing this all wrong. I have a text file full of data
It seems like more and more OS X apps these days are doing all
I've been doing this all the time: result = subprocess.call(['copy', '123*.xml', 'out_folder\\.', '/y']) if
EDIT: I would like to thank you all for the swift replies ^^ Sleep()
Ok first of all I like to mention what im doing is completely ethical
Ok..so I am doing a program on NLP. It uses function eliminateStopWords(). This function
I'm used to doing all my coding in one C file. However, I'm working
we're transitioning to doing all our task tracking in TFS 2010 and I'm wondering

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.