Autonumber in a TextBox in C#

Autonumber in a TextBox in C#

autonumberCSHARPoutput autonumberIn this tutorial, I’m going to show you how to create an autonumber in the TextBox in C#.net. This process has the ability to auto generate the number in the TextBox when the button is clicked. It is very useful for the future use, most specially when developing a system.

Let’s get started:

1. Open Microsoft Visual Studio 2008 and create new Windows Form Application for C#. Then, drag a TextBox and Button in the do the Form.

autonumberCSHARPfig.1

2. After setting up the Form, double click the “click” button to fire the click event handler. Then, put the following code into it.

 private void button1_Click(object sender, EventArgs e)
 {
//declare a variable for storing the incremented value into it
 int autonum=1; 
//set the formula for the incrementing of a textbox
 autonum = autonum + int.Parse(textBox1.Text);
//put the value in the textbox.
 textBox1.Text = autonum.ToString();
 }

Description: The number in the TextBox will be incremented by 1 when the button is clicked.

Output in Autonumber in a TextBox:

autonumberCSHARPoutput

For all students who need programmer for your thesis system or anyone who needs a source code in any programming languages. You can contact me @ :

Email – [email protected]
Mobile No. – 09305235027 – tnt

ABOUT PROJECTPROJECT DETAILS
Project Name : Auto number in a Text Box
Project Platform :C#
Programming Language Used:C# Programming Language
Developer Name :itsourcecode.com
IDE Tool (Recommended):Visual Studio 2019
Project Type :Desktop Application
Database:None
Upload Date and Time:June 22, 2016 – 9:07 am

Leave a Comment