473,387 Members | 1,540 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

I want auto generation of numbers in c#. like E001,E002

I am New to .net,I hope it would be great help for me I want auto generation of numbers in c#. Actually i have EmpCode with E and C followed by 3digit no. I have two text boxes. one box is for selecting E or C and another one for number which i want automatically generate like E001,E002
Jun 17 '15 #1

✓ answered by inspectelement

Expand|Select|Wrap|Line Numbers
  1. List<String> numbers = new List<String>();
  2. string code = "E"; //Or "C"
  3. for(int i = 0; i <= 999; i++)
  4. {
  5.     numbers.Add(String.Format("{0}{1:000}", code, i));
  6. }
Most teachers use this for auto generated passwords for students, but the account input is deleted.This will create E000 to E999. Same for C.

1 2349
Expand|Select|Wrap|Line Numbers
  1. List<String> numbers = new List<String>();
  2. string code = "E"; //Or "C"
  3. for(int i = 0; i <= 999; i++)
  4. {
  5.     numbers.Add(String.Format("{0}{1:000}", code, i));
  6. }
Most teachers use this for auto generated passwords for students, but the account input is deleted.This will create E000 to E999. Same for C.
Jun 17 '15 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Greg | last post by:
Hello, I'm about to write a database application and I'm wondering how to approach it. Is it worth to use the database code auto-generation (VC# 2005) in the long run? Or at some point I'll be...
0
mmarif4u
by: mmarif4u | last post by:
Hi guys,,, I have simple problem, Problem is that, i want that a php variable create date with numbers, look like this: $rtno = date("md,here some numbers but auto increment start from 001...
3
by: crazy123 | last post by:
Please guide me as how do can we create a aut generated number... I have created a database. I am giving each name in the database entry a unique ID I want the Unique ID to be auto generated...
6
by: Thorben Grosser | last post by:
Hello Newsgroup, at the moment I am coding an archive database for a bank. Every folder has an own number, following the sheme x-x-xxx-yyyy whereas x-x-xxx describes the archive, the storage...
3
by: manivelk | last post by:
Hi, I am manivel.. Am doing C#.Net project.. I want to display the auto generation of numbers in a text box starts from 1.. But i dont know how to implement this.. If any one knows plz inform me.....
0
by: Mogrin | last post by:
So I have this windows .net form app, and I have the following goals: -Needs to be 1 single file, the executable, in any directory the user decides to download it to. No installation folder, no...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.