Im making a Account maker, But I'm making it so it will put in the name I set and +1 number to it. Like this. Name Name1 Name2 Name3 Name4 Name5 Is there a way to do this? Thanks, Nasadaws
I gave alot there. Ok, It will make an account first with the name "Name" then Compelete the rest of the form, Then do the same thing but add a 1 to it "Name1" Like that. Then it will keep +1 each time. So like this. Name Name1 Name2 Name3 Name4 Name5 And that is alot of infomation.
Code: Program New; Var I : Integer; Const Times = 10; Begin For I := Low(Times) To High(Times) Do Writeln('Name+IntToStr(I)); End.