vote up 1 vote down star
1

I've created an excel sheet with Delphi 6. Now I have to add a picture to my sheet. Anybody knows how to do that?

flag

1 Answer

vote up 2 vote down check

You could try it like this :

procedure InsertPicture(ActiveSheet: OleVariant; ImageFilePath: string: ImageHeight, PictureTop: Integer); 
var
  Picture: OleVariant;
begin
  Picture := ActiveSheet.Pictures.Insert(ImageFilePath);
  Picture.Width := ImageHeight * Picture.Width / Picture.Height;
  Picture.Height := ImageHeight;
  Picture.ShapeRange.Left := 0;
  Picture.ShapeRange.Top := PictureTop;
  Picture.Placement := xlMove;
end;
link|flag
Exactly what I needed! Thanks. – Blue Nov 10 '08 at 16:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.