Re: Set waiting cursor in MS-Windows from Forms4.5 appln

From: Noud Van Beek <ajb_at_dcmr.nl>
Date: 1997/12/29
Message-ID: <68830t$vv0$1_at_news.NL.net>#1/1


KYY wrote in article <34A7739D.539951EA_at_netvigator.com>...

>Hi,
>
>I wonder if there is a way to set waiting cursor in MS-Windows from my
>Forms4.5
>application.
>
>Regards,
>
>

try this one to set to waiting cursor:
  if get_application_property(cursor_style) <> 'BUSY'   then

     set_application_property(cursor_style,'BUSY');   end if;

and this one to reset to default:

   if get_application_property(cursor_style) <> 'DEFAULT'    then
     set_application_property(cursor_style,'DEFAULT');    end if;

regards Noud van Beek Received on Mon Dec 29 1997 - 00:00:00 CET

Original text of this message