Variables in Multi-user Environment?

  • Thread starter Thread starter Bill MItchell
  • Start date Start date
B

Bill MItchell

If I set a value to a Global Variable in a multiuser
environment, does that variable get that value for
everyone or just for me? I am using variables to store
numbers for various reasons but it wont work if those
variables I set store the same value for everyone in my
multiuser (once i have a multiuser). They need to be
able to set the variable to their own values.

Also, any good sources that will list for me quickly the
funny quirks of multiuser that differ from single user
from a coding standpoint?
 
Bill MItchell said:
If I set a value to a Global Variable in a multiuser
environment, does that variable get that value for
everyone or just for me?

Just you. The value is in local RAM so it can't be seen ay another session
(even another session on your own PC).
 
Back
Top