Remarks
Occurs when the download of a picture from the Internet has been completed.
See the SetPictureFromNet method for more details.
Syntax
Visual Basic
BtnEnh1_PictureDLLDone (ByVal iPicture As enumPictures, ByVal bResult As Boolean)
Visual C++
void PictureDLLDone (long iPicture, BOOL bResult);
Parameter
|
Description
|
|
|
iPicture
|
The numeric value of the picture whose download from the Internet has been done. Supported values are the following:
Mnemonic constant
|
Value
|
Meaning
|
PICTURE_NORMAL
|
0
|
The download of the Picture property has been completed.
|
PICTURE_PRESSED
|
1
|
The download of the PicturePressed property has been completed
|
PICTURE_MOUSEOVER
|
2
|
The download of the PictureMouseOver property has been completed
|
PICTURE_CUSTOM
|
3
|
The download of the PictureCustom property has been completed
|
PICTURE_TEXTURE
|
4
|
The download of the Texture property has been completed
|
PICTURE_DISABLED
|
5
|
The download of the PictureDisabled property has been completed
|
PICTURE_SPLIT_BUTTON
|
6
|
The download of the SplitButtonPicture property has been completed
|
|
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.
|
|
|