D
Dominique
Please bare with me as i try to explain the scenario.
Scenario 1
I have a Development environment, which is a server.
From my desk, I am mapped to a folder in the development
environment that has an MS Access database. In other
words, I am coding from my desk, but the files are located
in another server. Here's the problem: when I try to
connect to another MS access database from the current one
I get this error: Object Variable or With Block Variable
Not Set. I even try creating a VB apps within that folder,
thinking that I should be able to connect, but it didn't
work.
Scenario 2
I have two different MS access database file in the same
folder:
MS access A
MS access B
I want to create a connection from MS access A to MS
access B without specifying a Drive letter:
i.e
Oconn2.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=F:\WWCS\Fru\FRUDSLIM.mdb"
why can't I do this:
Oconn2.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=\WWCS\Fru\FRUDSLIM.mdb"
Scenario 1
I have a Development environment, which is a server.
From my desk, I am mapped to a folder in the development
environment that has an MS Access database. In other
words, I am coding from my desk, but the files are located
in another server. Here's the problem: when I try to
connect to another MS access database from the current one
I get this error: Object Variable or With Block Variable
Not Set. I even try creating a VB apps within that folder,
thinking that I should be able to connect, but it didn't
work.
Scenario 2
I have two different MS access database file in the same
folder:
MS access A
MS access B
I want to create a connection from MS access A to MS
access B without specifying a Drive letter:
i.e
Oconn2.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=F:\WWCS\Fru\FRUDSLIM.mdb"
why can't I do this:
Oconn2.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=\WWCS\Fru\FRUDSLIM.mdb"