Core Function GUIPictureBox
From Sputnik Wiki
GUIPictureBox( <picturebox> )
Contents |
Description
Properties & Functions specifically for PictureBox
Parameters
picturebox
The PictureBox GUI object to use.
Functions
Load
Load an image into the PictureBox
GUIPictureBox($PB, "Load", "MyImage.jpg");
You can also load the image from a Binary Variable like
GUIPictureBox($PB, "Load", $binary);
Example
Go see GUICreate( "PictureBox" ) for example.