PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WEBDEV 2024 → Hyperlink on a xlsDocument doesnt work
Hyperlink on a xlsDocument doesnt work
Débuté par Aguilar, 03 fév. 2023 23:24 - Aucune réponse
Posté le 03 février 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()