Hi all! I've got a situation where my info is being saved from ADO 2.5 into a .adtg file. My question is what happens if several(say 10) people who are using the VB app try to read this file at the same time using the following code:

FilePath = C:\TestDirectory\Test1.adtg
rsTest.Open Source:=FilePath, Options:=adCmdFile

Will VB break down with an error if too many people try to read the file at once? Or can several people copy the contents of the file into their local recordset(ie rsTest) without any problems? What kind of error-trapping(if any) could I use to prevent any problems? Thanks for ANY ideas!

thomas