About 6,180,000 results
Open links in new tab
  1. c# - Multiplication of the values of two textboxes and displaying ...

    Jul 15, 2013 · Int32 val1 = Convert.ToInt32(textBox10.Text); Int32 val2 = Convert.ToInt32(textBox8.Text); Int32 val3 = val1 * val2; textBox7.Text = val3.ToString(); …

  2. c# - How to Display two TextBox values in one TextBox - Stack Overflow

    Oct 16, 2018 · How to show two textbox values in one textbox. I don't want to add or multiply only display the Value that I entered in the textbox. is this a windows app, or web app? Normally we …

  3. c# - Get value from multiple TextBox elements - Stack Overflow

    Jun 29, 2012 · Then you can use LINQ to find the relevant TextBoxes: var myTextBoxes = myPanel.Controls.OfType<TextBox>(); Enumerable.OfType will filter and cast the controls …

  4. Add And Multiply Two Textbox Values And Automatically ... - C#

    In this blog, we will learn how to add and mutliply two textbox values and automatically display add function result in third textbox value and mutliply function result in fourth textbox value.

  5. Passing Values Between TextBox of Different Forms Using Class - C#

    In this form, we use two textboxes in which the values are displayed in Form1. We use one button for closing the Form2. On the Form Load event, we define the coding of transferring the value …

  6. Join two TextBox value and display in another using C#

    Apr 14, 2020 · how to join two textbox value and display another textbox using asp c# example:- Emp.No.:-009412 Name:- Dheeraj Then textbox value is:-D009412

  7. How Pass the Data to Another Form in C#.Net | SourceCodester

    Sep 25, 2018 · In this tutorial, I will teach you how to pass the data to another form in c#. This method has the ability to pass the value of the TextBox in Form1 to a TextBox in Form2.

  8. C# Program to Concatenate Two or More Text Box Values

    In this example, I'll show you How to concatenate multiple textboxes values in C# Windows Form Application.

  9. Passing TextBox's text to another form in C#? - Stack Overflow

    May 7, 2025 · Expose the contents of the textbox using a property: public string MyValue { get { return textBox1.Text; } Then in Form2 do this: If you want frm1 to be constantly visible then …

  10. calculation of 2 textbox values in asp.net with c#

    Apr 12, 2007 · first of all validate textbox for integer with te help of RegularExpression validator and keep autopostback property true for textbox1 and textbox2 and then write down the code …

Refresh