PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → Insert picture to a specific adress with WINDEV >> 5.5
Insert picture to a specific adress with WINDEV >> 5.5
Iniciado por Antonio Santos, abr., 30 2004 1:11 PM - Sem resposta
Publicado em abril, 30 2004 - 1:11 PM
Hello,

1º- Is it possible to export a report to PDF Format with WINDEV 5.5 ?

2º- I also need to insert pictures in an EXCEL Sheet.
Source is:
xls IS OBJECT ole "Excel.Application"
xls>>visible = oletrue
xls>>workbooks>>open(fcurrentdir() + "\MySheet.XLS")

// Insert Pictures
HREADSEEK("MyFile","MyKey",MyField)
FOR Num = 1 TO 10
if not h.found then break
// insert the picture in the 10 free Cells.
// xls>> .....?????.....

HREADNEXT("MyFile","MyKey")
END

Thanks for your help