Hi All,
I have some actions which take a while before it shows some dialog or view, as it fetches data and displays. I would like to know how to set the wait cursor and back to default cursor.
Any help is appreciated.
Thanks in advance,
Agasthya
Hi All,
I have some actions which take a while before it shows some dialog or view, as it fetches data and displays. I would like to know how to set the wait cursor and back to default cursor.
Any help is appreciated.
Thanks in advance,
Agasthya
Subject: showing wait or busy Cursor
you can use two Notes API Calls
Declare Function NEMEnableWaitCursor Lib “nnotesws.dll” () As Long
Declare Function NEMDisableWaitCursor Lib “nnotesws.dll” () As Long
in your code you enable the waitcursor with
Call NEMEnableWaitCursor
and disable with
Call NEMDisableWaitCursor
Ulrich Krause
Subject: RE: showing wait or busy Cursor
Hi Ulrich Krause,Thanks a ton.
Agasthya