Picturize example for C++ 4.0 and later

// replace the current image in the main control with an image created
// from all the images present in c:\images. Resize all images present in that directory
// to 32x32 pixels and load them all in memory before proceeding

m_Lead1.SetScaleMode(3);    // use pixels as measurement units for size
m_Lead1.Picturize(“c:\\images”, PICTURIZE_LOADALL|PICTURIZE_RESIZE, 32.0f, 32.0f);