Thankyou for your reply.
If anyone out there is able to help me with the direct question - "All
> >I'm really looking for is to be able to assign a hidden attribute (Site Code)
> >to each entry a user makes. A username\password system would be handy as
> >then we wouldnt have to worry about another user from a differant site .........."
It would be greatly appreciated.
> >We are currently running a Records Management Database via Citrix to our
> >remote sites which can has on average 40 Users at one time just on that
[quoted text clipped - 29 lines]
>
> John W. Vinson[MVP]
Lynn Trapp - 19 Jan 2005 13:36 GMT
Matt,
The ideal solution sould be to implement Access's user level security, but I
have never implemented it in a Citrix environment and don't know how well,
if at all, it would work. You may need to create a table in the database
that stores the site code and a password associated with it. Then create a
form that the users see when they open the data base and allows them to
enter the site code and password. Then, that value could be used throughout
the session. The hard part is that you would need to add a "Who" field to
all your tables and have your application enter the site code in that field
whenever a user creates a new record.

Signature
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security: www.ltcomputerdesigns.com/Security.htm
> Thankyou for your reply.
>
[quoted text clipped - 45 lines]
>>
>> John W. Vinson[MVP]
John Vinson - 19 Jan 2005 21:00 GMT
>If anyone out there is able to help me with the direct question - "All
>> >I'm really looking for is to be able to assign a hidden attribute (Site Code)
>> >to each entry a user makes. A username\password system would be handy as
>> >then we wouldnt have to worry about another user from a differant site .........."
>
>It would be greatly appreciated.
Here's one scenario:
Each Citrix client is connected to a separate, Windows Security
protected folder on the Citrix server; they'll only be able to see
their own folder. In each such folder there is a customized Access
frontend database.
The backend database has a field SiteCode (don't use blanks in
fieldnames!) field in each table where you want to track the data.
Each frontend has Forms to update the data in the tables. On each Form
there is a textbox bound to that table's SiteCode field; the
properties of the textbox are:
Enabled = No
Locked = Yes
Visible = No
TabStop = No
DefaultValue = <that user's Site Code>
John W. Vinson[MVP]