Variables

  • Thread starter Thread starter DS
  • Start date Start date
D

DS

If you are using an application across many computers and declare a
Global Varaiblethat is application wide does that mean that the value of
the Global variable is only for that machine or can everyone using the
application on the other machines grab that value as well, or will their
machine have its own value?
Thanks
DS
 
Each machine has its own processor, and variables are memory only values.

So, the memory on my computer is NOT effected by the memory on yours!! (be
thankful for that!!!).

Note that the database never actually shares the data, but that data travels
to YOUR computers memory. Is modified, and then send back to the file.
However, variables are really the same as memory on your desktop calculator.
When your turn off the device, the memory values are gone.
 
Albert said:
Each machine has its own processor, and variables are memory only values.

So, the memory on my computer is NOT effected by the memory on yours!! (be
thankful for that!!!).

Note that the database never actually shares the data, but that data travels
to YOUR computers memory. Is modified, and then send back to the file.
However, variables are really the same as memory on your desktop calculator.
When your turn off the device, the memory values are gone.
Thank you, very clearly put!
DS
 
Back
Top