mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 21:29:41 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			311 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			311 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| {example for ShowMouse and HideMouse}
 | |
| 
 | |
| Uses MsMouse;
 | |
| 
 | |
| Begin
 | |
|   ClrScr;
 | |
|   If MouseFound Then
 | |
|     Begin
 | |
|       Writeln('Now you can see the mouse... (press enter to continue)');
 | |
|       ShowMouse;
 | |
|       Readln;
 | |
|       HideMouse;
 | |
|       Writeln('And now you can''t... (press enter to quit)');
 | |
|       Readln
 | |
|     End
 | |
| End.
 | |
| 
 | 
