PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WEBDEV 2024 → Hyperlink on a xlsDocument doesnt work
Hyperlink on a xlsDocument doesnt work
Iniciado por Aguilar, 03,feb. 2023 23:24 - No hay respuesta
Publicado el 03,febrero 2023 - 23:24
When inserting an url example (https://forum.pcsoft.fr/) in a cell of an xlsDocument variable, when opening the file, the url is as if it were just text and for it to work I have to enter the cell and press enter . Can you help me to know if the file can be created in a certain way so that when I open it the hyperlink is ready to use.
example

cMyXLSFile is xlsDocument
cMyXLSFile.AddWorksheet("sheet 1")
cMyXLSFile[1,"A"]="https://forum.pcsoft.fr/"
cMyXLSFile.Save("C:\Test\File.XLS")
cMyXLSFile.Close()