Nathan Campos 23 Junior Poster

Hahahahahhaha!
Very nice Matty!

Nathan Campos 23 Junior Poster

Don't put this dirty words in your title, put better titles and that explain what you need!

Thanks!

Bladtman242 commented: I did explain my needs, i even did so in the title thank you, please read before making angry posts +0
VernonDozier commented: Perfectly reasonable post. There is no need to swear. +24
Nathan Campos 23 Junior Poster

Only one comment for you codeguru_2009: please put the code highlighting in your code, using this tags: [ code=asm ] ... [ /code=asm ], without spaces, it's just to for the best comprehension of the code.

Thanks!

Nathan Campos 23 Junior Poster

And read your question about MP3 Player in Pascal, i post the source code!

Nathan Campos 23 Junior Poster

huh, this problem is much more complex!

Nathan Campos 23 Junior Poster

It's just a test, if it solves the problem, because one person that i know(is my friend) here in Brazil, was having a a problem like this, then he do this and the problem solves.

Nathan Campos 23 Junior Poster

What is the type of DB, because you only have to search in Google for this: Delphi+Your DB Type+Tutorial

Nathan Campos 23 Junior Poster

Remove the [ ] from the string method, like this:

Verse : array[1..6] of string;
Nathan Campos 23 Junior Poster

First of all post your code like this:

Program Help_me;
uses crt;

var total : byte;
Verse : array[1..6] of string[250];
begin
clrscr;
writeln('please enter the amount of verses the song has, may not exceed 6');
readln(Total);{here I would write a small step to exclude "-", >6 and so on}
for total := 1 to total do
begin
writeln('please enter song verse here');
Writeln('do not use "enter" for next line of verse, use "." and "," to
end lines);
readln(Verse[total]); {this can only read +-150char, and if I go past 80 char and the line jumps, I can't delete the first line}
end;{and so on and so forth}
end.
Nathan Campos 23 Junior Poster

You can post the code, only to see, because i need to see your code to solve your problem.

Nathan Campos 23 Junior Poster

In your case i will use Delphi, with the Multi-Media Player component, that you can play, pause, stop, FF, FW, also in movies...
And for the lyrics that you want to play(i understand this) you can use a Timer to put the in a TextBox or something else.

Nathan Campos 23 Junior Poster

Please of better titles, not things like: HELP, Error, help with..., but your problem in the title, just to be better for the other users.
Thanks!