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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:37:14+00:00 2026-05-27T21:37:14+00:00

I have a few text boxes which have to be filled with numeric values

  • 0

I have a few text boxes which have to be filled with numeric values from 0 to 100. Below them there is another text box which stands for a total (the sum of the values from the text boxes above). How can I update the sum text box while typing in any of the other text boxes above?

  • 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-27T21:37:15+00:00Added an answer on May 27, 2026 at 9:37 pm

    This is problematic due to the asinine requirement in Access that you have to set focus to text areas before you can get their value. I would recommend you change your design so that the text field is updated in response to a button click instead of on change.

    If you want to go the update-on-change route, you would attach change events to each of the addend text fields. The event handlers would need to save the caret position/selection length, update the sum in the output text field, and restore the caret position. You need to save/restore the caret position because this is lost when the focus changes.

    Here’s an example for two text fields (txt1 and txt2). The output field is named txtOutput.

    Private Sub txt1_Change()
        Dim caret_position As Variant
    
        caret_position = Array(txt1.SelStart, txt1.SelLength)
    
        UpdateSum
    
        txt1.SetFocus
        txt1.SelStart = caret_position(0)
        txt1.SelLength = caret_position(1)
    End Sub
    
    Private Sub txt2_Change()
        Dim caret_position As Variant
    
        caret_position = Array(txt2.SelStart, txt2.SelLength)
    
        UpdateSum
    
        txt2.SetFocus
        txt2.SelStart = caret_position(0)
        txt2.SelLength = caret_position(1)
    End Sub
    
    Private Sub UpdateSum()
        Dim sum As Variant
        sum = CDec(0)
    
        txt1.SetFocus
        If IsNumeric(txt1.Text) Then
            sum = sum + CDec(txt1.Text)
        End If
    
        txt2.SetFocus
        If IsNumeric(txt2.Text) Then
            sum = sum + CDec(txt2.Text)
        End If
    
        txtOutput.SetFocus
        txtOutput.Text = sum
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have form with few text boxes which goes through validation (both server and
I have a form with a few text-boxes and a Grid-view. There is this
I have a few text boxes and buttons on my form. Lets say txtBox1
Pretty simple question. I have a few ASP RequiredFieldValdators checking some text boxes. Out
Here's the problem -- I have a few thousand small text snippets, anywhere from
i have database table with few text fields which i use to filter data
I have a web page that has a few text boxes, and a dual
I have a few text boxes on my UI that I want to display
I have a few text files and I'd like to count how many times
I have problem with TinyMCE editor. I have form with few text fields and

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.