Viscom Software Image Thumbnail CP ActiveX Control


Assuming that you have already run the Image Thumbnail CP ActiveX Control installation program and started Delphi, the next step is to install Image Thumbnail CP ActiveX in Delphi. Select Component/Import ActiveX Control/Image Thumbnail CP Pro ActiveX Control. Select Image Thumbnail CP ActiveX Control and press Install... button


Select Control

Click on the Image Thumbnail  Cp ActiveX Control icon and draw it on the form. A rectangle should appear on the form.

Add Button in Form, add this line of code, which will load the image file..
procedure TForm1.BtnAddFileClick(Sender: TObject);
begin
    imagethumbnailcp1.AddClip('c:\test.jpg','');
    ImageThumbnailCP1.SetFocus;


end;

end;