home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
572
/
xgrafic2
/
demos
/
demo02.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1994-07-21
|
686b
|
31 lines
USES XGRAPHIC;
var fin : integer;
BEGIN
modevga480;
initsouris;
panneau3d(200,200,440,280,7);
limiteairesouris(150,150,490,330);
affichesouris;
fin := 0;
while fin = 0
do begin
if clickobjet(200,200,440,280) = 1
then begin
texte(10,50,14,'VOUS AVEZ CLICKE SUR LE PANNEAU 3D');
texte(10,70,11,'APPUYER SUR UNE TOUCHE POUR FAIRE DISPARAITRE');
texte(10,80,11,'LE POINTEUR DE LA SOURIS');
readln;
cachesouris;
texte(10,100,5,'APPUYER SUR UNE TOUCHE POUR QUITTER');
readln;
finmodegraphique;
fin := 1;
end;
end;
END.