Get value from TextBox : TextBox « GUI Windows Form « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » GUI Windows Form » TextBoxScreenshots 
Get value from TextBox
 
using System;
using System.Drawing;
using System.Windows.Forms;

public class InterestCalculator : Form {

    Button buttonCalculate  = new Button();

    TextBox textBoxPrincipal = new TextBox();
    TextBox textBoxRate = new TextBox();
    TextBox textBoxInterest = new TextBox();

    Label labelPrincipal = new Label();
    Label labelRate = new Label();
    Label labelInterest = new Label();

    public InterestCalculator() {
        buttonCalculate.Location = new Point(50100);
        buttonCalculate.Text = "Calculate";

        buttonCalculate.Click += new System.EventHandler(this.buttonCalculate_Click);

        this.Controls.Add(buttonCalculate);

        textBoxPrincipal.Location = new Point(1020);
        textBoxPrincipal.Size = new Size(15010);
        textBoxPrincipal.Text = "100000.00";
        this.Controls.Add(textBoxPrincipal);

        textBoxRate.Location = new Point(1060);
        textBoxRate.Size = new Size(15010);
        textBoxRate.Text = "0.15";
        this.Controls.Add(textBoxRate);

        textBoxInterest.Location = new Point(10150);
        textBoxInterest.Size = new Size(15010);
        textBoxInterest.Text = "15000.00";
        this.Controls.Add(textBoxInterest);

        labelPrincipal.Location = new Point(105);
        labelPrincipal.Size = new Size(14415);
        labelPrincipal.Text = "Principal";
        this.Controls.Add(labelPrincipal);

        labelRate.Location = new Point(1045);
        labelRate.Size = new Size(14415);
        labelRate.Text = "Rate";
        this.Controls.Add(labelRate);

        labelInterest.Location = new Point(10135);
        labelInterest.Size = new Size(14415);
        labelInterest.Text = "Interest";
        this.Controls.Add(labelInterest);
    }

    private void buttonCalculate_Click(object sender, System.EventArgs e) {
        double prin = Convert.ToDouble(textBoxPrincipal.Text);
        double rate = Convert.ToDouble(textBoxRate.Text);
        double amt = prin * rate;
        textBoxInterest.Text = amt.ToString("f2");
    }

    public static void Main(string[] args) {
        Application.Run(new InterestCalculator());
    }
}

 
Related examples in the same category
1.Add ScrollBars to TextBox
2.new TextBox(), Localtion, Name, TabIndex, Text
3.TextBox locationTextBox location
4.Keyboard event and TextBox
5.Text Changed eventText Changed event
6.A simple text editorA simple text editor
7.Convert TextBox input to double valueConvert TextBox input to double value
8.All cap text textboxAll cap text textbox
9.Data CheckerData Checker
10.User EventsUser Events
11.TextBox and button on formTextBox and button on form
12.TextBox and ListBoxTextBox and ListBox
13.Label, TextBox and ButtonLabel, TextBox and Button
14.TextBox DemoTextBox Demo
15.Simple Editor based on TextBox
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.