Re: How to change the mouse cursor?

From: David Martin <djmartin_at_netspace.net.au>
Date: 1997/01/11
Message-ID: <32d6ec50.3538359_at_news.netspace.net.au>#1/1


kshave_at_MBnet.MB.CA (Keith Shave) wrote:

> Does anybody know how to change the mouse cursor to an
>hourglass (or whatever the system setting is for 'wait'). I want to
>change the mouse cursor to an hourglass during an import procedure.
>
>-Keith
>--
>
>kshave_at_minet.gov.mb.ca
Try these.



PROCEDURE show_busy_cursor IS
BEGIN MESSAGE('Working...',NO_ACKNOWLEDGE);
SYNCHRONIZE; /* Set cursor to busy */
SET_APPLICATION_PROPERTY(CURSOR_STYLE,'BUSY'); END;

PROCEDURE show_default_cursor (clear_msg IN VARCHAR2 := 'N') IS BEGIN
/* Set cursor to default */
SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT'); IF clear_msg = 'Y' THEN

    CLEAR_MESSAGE;
END IF;
END;



Good luck.
David Received on Sat Jan 11 1997 - 00:00:00 CET

Original text of this message