Variables in Multi-user Environment?

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?
 
R

Rick Brandt

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).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top