Page 1 of 1

Editor Archivos MEM /Files MEM Editor

Posted: Tue Nov 19, 2013 8:48 pm
by JALMAG
Hola, necesito poder modificar un archivo MEM que realicé en un antiguo programa Clipper, la pregunta es ¿Como puedo desde HMG poder editar ese archivo MEM?
Gracias


Translate
Hi, I need to modify a file MEM I made in an old Clipper program, the question is How I can from HMG MEM to edit that file?
thanks
Best regards

Editor Archivos MEM /Files MEM Editor

Posted: Tue Nov 19, 2013 11:53 pm
by Pablo César
JALMAG wrote:Hola, necesito poder modificar un archivo MEM que realicé en un antiguo programa Clipper, la pregunta es ¿Como puedo desde HMG poder editar ese archivo MEM?
Gracias


Translate
Hi, I need to modify a file MEM I made in an old Clipper program, the question is How I can from HMG MEM to edit that file?
thanks
Best regards
Sure you can in Harbour, not HMG. The same way you have been used at Clipper.

Restore from (cPath+"Name") Additive // here open the MEM file

and

Save to (cPath+"Name") all Like OS_* // This save all variable starting with OS_

You can see some other examples in:

ACERTA.PRG

ARRAYS2MEM.PRG