Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recordset- Tempory Files On Client Machine

Status
Not open for further replies.

TURNERMICH

Technical User
Apr 5, 2000
64
AU

I am running an access2000 program on a server.
There are several Temporary files needed. I need to have these files on the remote users machine., to keep them common to each user.
---------------

Set ff1 = db.OpenRecordset("file1", DB_OPEN_TABLE)
Set dbtemp = OpenDatabase("c:\accesstemp\Temp.mdb")
Set ff2 = dbtemp.OpenRecordset("temp1", DB_OPEN_TABLE)

ie. The ff2 file is created from the ff1 recordset.

Then.... I need...
List99.RowSource = "SELECT [Temp1].[Tdata1], [Temp1].[Rec], [Temp1].[Tdata2] FROM [Temp1]"


How do i refer to the temp file in the SELECT statement.

I need to keep the current mdb file open, but also have the c:\accesstemp\temp.mdb open., and use temp1 in this file as the select.


Appreciate some help.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top