PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Insert picture to a specific adress with WINDEV >> 5.5
Insert picture to a specific adress with WINDEV >> 5.5
Débuté par Antonio Santos, 30 avr. 2004 13:11 - Aucune réponse
Posté le 30 avril 2004 - 13:11
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