shahjagat (AT) aol (DOT) com (ShahJagat) wrote in message news:<20031019143528.09953.00000512 (AT) mb-m24 (DOT) aol.com>...
Quote:
I wanted to know how sys(3) works.
Does it generate a different value everytime?
Yes, the problem with no-unique value from sys3 has arised still in
|
FPD 2/2.5,6 on fast computers. I have used my own SYS3:
---
FUNCTION mySys3() && syntax is VFPx!!!!
private all like x*
xcSys3=SYS(3)
DO WHILE xcSys3==SYS(3)
doevents
ENDDO
RETURN xcSys3
---
Quote:
Is it possible two concurrent
users on same network can come up with same values with sys(3). |
I guess it is possible. You have to use another logic to gain an
unique value for more users (net workstations).
Quote:
I wanted to use the sys(3) to generate unique ID's. Any chance it can reproduce
the SAME value that it generated some months or years ago?
Thanks in advance... |