Scans your site and returns information about your SSL implementation and certificate. Helpful for debugging and validating your SSL configuration.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
If each image is the same size, then create an image that has all of the images in one strip.
Place a TImageLIst on your form and set the height and width property that each individual
image is. For example, if you have a strip that is 64 x 16 and each image
is 16 x 16, the strip contains 4 images, each of which is 16 wide and 16
tall, so set the imagelist height and width to 16.
Next include the resource file in the appropriate unit, i.e. {$R
MYIMGS.RES}
Then, in your code, Load the images in the imagelist as follows.
MyImageList.ResourceLoad(r
if MyImageList.Count=0 then
MessageDlg('Could not load My Image List',mtError,[mbOK],0);
Note: clBlue is the background color to be used for transparency purposes .
Now you have a TImageList with your images,
You can step through the imageList and display the images 1 at a time
step through the images int he list, and display them in a TImage component
for I:= 0 to ImageList.Count-1 do
begin
MyImageList.GetBitmap(I, MyImage.Picture.Bitmap)
//maybe add somedelay here using TTimer, thread, or even just the Sleep function
end;
Shane
Shane