Click here to Skip to main content
15,896,153 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I want to generate serial sequence numbers within a range.
I have a from textbox and a to textbox. After that i have to fill from textbox and To Textbox for specifying the range.
The numbers should print within that range and they should come serially.
I want to do it with C#.

Please help me out....
Posted
Comments
Karthik_Mahalingam 24-Nov-13 4:07am    
Wat u hav to print??
OriginalGriff 24-Nov-13 4:08am    
And? What is your problem with this?
What have you tried? Where are you stuck?

Remember that we can't see your screen, access your HDD, or read your mind.
Use the "Improve question" widget to edit your question and provide better information.
Thanks7872 24-Nov-13 4:12am    
And? What is the question? This is just a list of requirements. You have not asked any question.

1 solution

Hi.
WE are not sure of your question..
this code might help you, in case if u r looking for this..

C#
int from = Convert.ToInt32(txtboxFrom.Text.Trim());
               int to = Convert.ToInt32(txtboxTo.Text.Trim());

               for (int i = from; i <= to; i++)
               {
                   // this loop will runs in the range mentioned in the text box..
                   // u can do your print or watever u want..

               }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900