Ver Mensaje Individual
  #2  
Antiguo 13-01-2004
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Experimenta con algo así

Código:
var
  LinkToFile: Olevariant;
  SaveWithDocument: OleVariant;
  Range: OleVariant;

begin
  LinkToFile := false;
  SaveWithDocument := true;
  Range := WordDoc.Range;

  WordDoc.Range.InlineShapes.AddPicture(
    'c:\bmp.bmp',
    LinkToFile,
    SaveWithDocument,
    Range
  );
donde WordDoc es una componente TWordDocument.
Responder Con Cita