Question : 2003 Server Folder Redirection, Different Servers

I have 3 sites.  All managed by our GPO on the DC.  However, I want to put in a file server at each location that can house the files for the users at that location (i.e. My Documents).  Currently they are all redirected to a server here but with all the VPN connections it's slower than hell to access their files especially if they're large.

So, with the current GPO being enabled for the entire domain, is there a way to individually change a user's redirection?  I tried adding another GPO for just users at one location and enforcing it but no change.  I could probably just add the current GPO to just users at this location (user group) and add a new one with the others but I'd really like to leave the current one in tact.

Thanks!!

Answer : 2003 Server Folder Redirection, Different Servers

A shared variable passes back the last value you set it to in the subreport.

If you have multiple values you need to pass back try this idea.  You will probably need to change it a bit to work with your fields.

In the main report add a formula to the report header
WhilePrintingRecords;
Shared StringVar Array mySharedArray;
Shared NumberVar ArraySize;
''

In the subreport detail section
WhilePrintingRecords;
Shared StringVar Array mySharedArray;
Shared NumberVar ArraySize;
ArraySize := ArraySize + 1;
ReDim Preserve mySharedArray[ArraySize];
mySharedArray[ArraySize] := {YourStringField};
''

In the main report after the subreport
WhilePrintingRecords;
Shared StringVar Array mySharedArray;
Shared NumberVar ArraySize;
Join(mySharedArray,', ')

mlmcc
Random Solutions  
 
programming4us programming4us