Until the 2007 office when executing the insert pictures instruction the images were recorded in the Excel document that was being created without problem.
When transferring this Excel to other computers or sending it by e-mail, the images were embedded in the Excel and therefore displayed correctly.
As of office 2007, Microsoft, when executing the pictures insert instruction, only links them. And when copying this Excel to other devices, it gives a message of "the linked image can not be displayed ...".
Consulting different forums I have found that the solution is to change the instruction of pictures insert, by the one of shapes addpicture.
In VB the instruction would be:
Dim s = xlSheet.Shapes.AddPicture (_
Filename: = PhotoName, _
LinkToFile: = False, SaveWithDocument: = True, _
Left: = 5, Top: = 3, _
Height: = HighImage, _
Width: = WidthImage)
The problem is that in Acucobol I can not get this instruction to work.



