Hi,
Is there anyway i can put my every entry of username in a file like this e.g. using any auto number generation with every entry
1. Test
2. Hello
After i put them in a file like this i want to search and delete based on the numbers. e.g.
Please enter the number to delete the data: 1
"should delete the test from a file"
Please help. As any suggestions and location of any website will also be helpful.
Regards,
|
Go4Expert Founder
|
![]() |
| 5Apr2007,18:56 | #2 |
|
For files you need to be doing the auto generation but for database you can always have the priviledge of using the database field.
|
|
Contributor
|
|
| 5Apr2007,18:57 | #3 |
|
Hi Shabbir,
I dont want database in this situation. I just want to add auto number generation in a file |
|
Go4Expert Founder
|
![]() |
| 5Apr2007,20:26 | #4 |
|
I am not saying you switched to dbs but just saying that you need to be doing it yourself.
|
|
Contributor
|
|
| 5Apr2007,20:31 | #5 |
|
Can you give me idea? please
|
|
Go4Expert Founder
|
![]() |
| 6Apr2007,08:30 | #6 |
|
Quote:
Originally Posted by shah123 |
|
Contributor
|
|
| 8Apr2007,14:30 | #7 |
|
Hi Shabbir,
"Read the file and get the last number. Increment it by one and then add one to it and save the next one" Can you please tell me in psuedu code or something please small bit implementation? |
|
Go4Expert Founder
|
![]() |
| 8Apr2007,18:19 | #8 |
|
The pseudo looks something like
Code:
File f = ReadFile(); int i = LastNumberInputted(f); i++; SaveNextRecord(i,Data); |
|
Contributor
|
|
| 12Apr2007,15:06 | #9 |
|
Hi,
Code:
Console.WriteLine("Please Enter your username :");
int Counter = 0;
s = Console.ReadLine();
Counter = Counter + 1;
sw.WriteLine(Counter + " " + s);
sw.Write(sw.NewLine);
2. When every time i enter one name it comes out of getusername function and display the menu options again. How to prevent that? Regards, |

