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

C# / C Sharp
1. 2D Graphics
2. Class Interface
3. Collections Data Structure
4. Components
5. Data Types
6. Database ADO.net
7. Design Patterns
8. Development Class
9. Event
10. File Stream
11. Generics
12. GUI Windows Form
13. Language Basics
14. LINQ
15. Network
16. Office
17. Reflection
18. Regular Expressions
19. Security
20. Services Event
21. Thread
22. Web Services
23. Windows
24. XML
25. XML LINQ
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
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
w_ww___.j_a___va___2_s_.c__o___m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.