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

The Archive Base Latest Questions

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

I am creating an expense tracking report using Visual Studio 2010 C# where the

  • 0

I am creating an expense tracking report using Visual Studio 2010 C# where the user can see the total of all the expenses while he/she is still typing the values for each expenses so that he/she could know if the total is equivalent or higher than her budget. My question is, how can I get the total of all the expenses the user is entering without having him/her press any button to calculate? Please help. Thanks

This is the screenshot of the form:

enter image description here

This is the code:

private void textBox3_TextChanged(object sender, EventArgs e)
    {
        tot = 0;
        tot += int.Parse(textBox1.Text); // No error checking, just an example
        tot += double.Parse(textBox2.Text);
        textBox3.Text = tot.ToString();
    }
  • 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-27T07:38:34+00:00Added an answer on May 27, 2026 at 7:38 am

    You should catch TextChange event on every textbox (it could be one for all)

    double tot = 0;
    private void tb_TextChanged(object sender, EventArgs e)
    {
        // Update sum here
        tot = 0;
        tot += Int.Parse(Textbox1.Text); // No error checking, just an example
        tot += Double.Parse(Textbox2.Text); // Be careful to decimal separator
    
        TotalTextBox.Text = tot.ToString();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Creating a WCF Service Library in Visual Studio 2008 on Vista x64 is troublesome
Creating a default ASP.NET MVC project in Visual Studio sets up a basic project
Creating a google map with store locations within 50 miles of user entered address.
When creating a web application, and lets say you have a User object denoting
in liftbook, there's an example of creating of a Req instance by using apply
Creating a table without tbody using javascript createElement/appendChild will not add tbody in Firebug
Creating sprite sheets aka texture atlases rather than using many hundres of individual images
Creating a web interface so our helpdesk can create users and setup some of
Creating a zip file using Send To -> Compressed folder excludes .hg folder on
Creating My Windows Form Application and using ADO.Net as Data Access layer and SQL

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.