|

the software that grows
with you
| |
|
V32Notify()
|
| Executes alike MSN Messenger's mail
notification window with given text array. |
|
Syntax
|
| V32Notify( <aInfo> ) |
|
Arguments
|
| aInfo |
An arraay with 5 character elements displayable on
five lines of notification window. |
|
|
Returns
|
| NIL |
|
Description
|
| Similar on the lines of MSN Messenger's
mail arrival notification window, V32Notify() executes a window at the
status area coordinates. The window will have opening effects coupled with
musical tone. Its primary task is to inform the user that certain process
has been completed. It never interrupts the program execution and is handy
for variety of situations.
<aInfo> is an array of five elements containing character strings
which will be displayed on five lines. If number of elements are lesser
than 5, then the portion below the number of elements will be filled with
null string.
Please note that the width of the notification window is fixed, so the
character strings contained in the <aInfo> should be wide enough not
to loose site.
|
|
Usage
|
| local aInfo := { 'Report', 'Financial
Statements', 'has', 'Completed', 'Successfully' }
Do while .t.
CreateAReport() // Code to
generate a report
V32Notify( aInfo )
if eof()
exit
endif
enddo
|
|
Tips
|
|
|