I am generating Excel files from GX9 - java. The Excel version is 2013, Win 8. If they are generated on my pc, all Excel files open with "Vista Protegida" red level. In the same application there are other procedures that generate Excel spreadsheets and do not have this drawback. The coding process is the same in all:
&ExcelDoc.UseAutomation = 0
&ExcelDoc.Open(&Path)
Do 'CheckStatus'
&ExcelDoc.Clear()
&ExcelDoc.AutoFit = 1
... listing code
&ExcelDoc.Cells(&Fila, &Columna).Color = 55
&ExcelDoc.Cells(&Fila, &Columna).Bold = 1
&ExcelDoc.Cells(&Fila, &Columna).Size = 14
...
&ExcelDoc.Save()
Do 'CheckStatus'
&ExcelDoc.Close()
I already tried the topic of the "Configuration of the trust center" of Excel, but nothing. Does anyone have any idea what can be? Or has something similar happened to them? Thank you very much.