Remarks
Occurs when the download of an animation from the internet has been completed.
See the SetAnimFromNet method for more details.
Syntax
Visual Basic
BtnEnh1_AnimDLLDone (ByVal iPicture As enumPictures, ByVal bResult As Boolean)
Visual C++
void AnimDLLDone (long iPicture, BOOL bResult);
Parameter
|
Description
|
|
|
iPicture
|
The numeric value of the animation whose download from the Internet has been done. Supported values are the following:
Mnemonic constant
|
Value
|
Meaning
|
PICTURE_NORMAL
|
0
|
The download of the animation associated to the Picture property has been done.
|
PICTURE_PRESSED
|
1
|
he download of the animation associated to the PicturePressed property has been done.
|
PICTURE_MOUSEOVER
|
2
|
The download of the animation associated to the PictureMouseOver property has been done.
|
|
bResult
|
The result of the download. Supported values are the following:
Value
|
Meaning
|
FALSE
|
The download failed and the property has not been changed
|
TRUE
|
The download succeeded and the property has been changed.
|
|
|