home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programming
/
powerprogramming1994.iso
/
progtool
/
surfmodl
/
surfm203.arc
/
SURFSRC.ARC
/
MENUMSG.INC
< prev
next >
Wrap
Text File
|
1987-12-21
|
243b
|
12 lines
procedure MENUMSG (Msg: text80);
{ Output a message in the main menu, showing current status }
var i: integer;
begin
gotoXY (1,15);
write (Msg);
for i := 1 to (50-length(Msg)) do
write (' ');
end; { procedure MENUMSG }