PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Multifile
Multifile
Débuté par Alena, 18 oct. 2005 11:03 - 1 réponse
Posté le 18 octobre 2005 - 11:03
Please advise me:
I have window with edit controls.
Some controls have link to 1.file - "single-file" and some controls have link to 2.file by "multifile". Files are linked in analysis.
When I do FileToScreen(), its OK, good values are on controls.
I change some values on controls, then
ScreentoFile()
Modify("1.file")
Modify("2.file")
Only values from 1.file are saved(link to "single-file"), but ones from "multifile" are not saved.
What must I do?
Posté le 02 novembre 2005 - 11:06
Hi Alena,

I think that screenToFile() apply only the current file (the last read)

If you want to do that, you must use

screentofile(window, Filename)
screentofile(window, Filename2)

Regards

Fred