PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WEBDEV 2024 → Hyperlink on a xlsDocument doesnt work
Hyperlink on a xlsDocument doesnt work
Iniciado por Aguilar, fev., 03 2023 11:24 PM - Sem resposta
Publicado em fevereiro, 03 2023 - 11:24 PM
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()