sorry, I don't understand~
how to use SetVideoMode in my program?
here is my program:
program music_voting;
USES CRT;
procedure welcome;
var
welcometext: text;
line:string;
begin
clrscr;
assign(welcometext,'welcome.txt');
reset(welcometext);
while not eof(welcometext) do
begin
readln(welcometext,line);
writeln(line)
end;
close(welcometext)
end;
begin
welcome;
readln
end.