P
Paul Farseth
In FoxPro and dBase, putting an ampersand (&) in front of
the name of a memory variable allowed you to use the
contents of that variable as an instruction in program
code. For example, you could prompt a program user for a
drive and directory (e.g. "H:\MyHomeDrive") and then store
that in a memory variable and use it with the & "macro"
command to control where a file was written, e.g.
MemoryVariable = MemoryVariable + "NewFile.DBF"
COPY TO &MemoryVariable
How would one do this in ACCESS (that is, get the memory
variable's contents to be available to control a process
as part of the code in a module)?
the name of a memory variable allowed you to use the
contents of that variable as an instruction in program
code. For example, you could prompt a program user for a
drive and directory (e.g. "H:\MyHomeDrive") and then store
that in a memory variable and use it with the & "macro"
command to control where a file was written, e.g.
MemoryVariable = MemoryVariable + "NewFile.DBF"
COPY TO &MemoryVariable
How would one do this in ACCESS (that is, get the memory
variable's contents to be available to control a process
as part of the code in a module)?