|

the software that grows
with you
| |
|
V32Splash()
|
| Displays a splash screen displaying given
bitmap file. |
|
Syntax
|
| V32Splash( <cFileBmp>, [nDuration]
) |
|
Arguments
|
| cFileBmp |
Character string representing bitmap (.bmp) filename
with drive and path information. |
| nDuration |
Optional. Numeric ticks representing duration of
splash screen remaining visible on the screen. 1000 ticks means 1
second. Default is 3000 means 3 seconds. |
|
|
Returns
|
| NIL |
|
Description
|
| Just prior to executing any other code,
isuue V32Splash to display a bitmap representing application logo. This
function can be exploited in some interesting ways also. Your imagination
is the limit. Program execution is uninterrupted while this function is
executed.
The splash window remains at the top of all other windows. If right or
left button is pressed over the window, it will be closed immediately
otherwise will remain open till nDuration has expired.
|
|
Usage
|
| V32Splash( 'MyLogo.bmp', 5000
) // Remain open for 5 seconds. |
|
Tips
|
|
|