next up previous contents index
Next: The PRINTER unit. Up: Functions and procedures Previous: SetMouseYRange

ShowMouse

   

Declaration:

Procedure ShowMouse ;

Description:

ShowMouse makes the mouse cursor visible.

At the start of your progam, the mouse is invisible.

Errors:

None.

See also:

HideMouse,SetMouseHideWindow

Example
{example for ShowMouse and HideMouse}

Uses Mouse;

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.



Michael Van Canneyt
Thu Sep 10 13:59:33 CEST 1998