PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → Multifile
Multifile
Iniciado por Alena, out., 18 2005 11:03 AM - 1 resposta
Publicado em outubro, 18 2005 - 11:03 AM
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?
Publicado em novembro, 02 2005 - 11:06 AM
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