jag kommer inte åt recordsource (i property fönstret i vb) på access databaser som är gjorda i office 2000. Det går med äldre databaser. Hej Har för mig att man måst köra med sp4 eller sp5 för vb för att den ska klara access 2000 databaser. jag hittade detta själv. och det funkarkomma åt databas
vad gör jag för felSv: komma åt databas
Du måste först hårdkoppla DataBaseName till aktuell mdb
innan du kan välja RecordSource
Man måste kanske använda DAO 3.6 i Access2000 vet ej !
kanske kan det vara det ?
Tror
Sven
Ta bort hårdkopplingen när du är klar
DSSv: komma åt databas
Sv: komma åt databas
Intrinsic Data Control Is Usable with Access 2000 Databases
At design time, trying to bind the Data control to a Microsoft Access 2000 database will result in an error: "Unrecognized database format." The Data control can still be used, however, by following the example below:
On the Project menu, click References. Clear the Microsoft DAO 3.51 Object Library check box.
Set a reference to the Microsoft DAO 3.6 Object Library.
Draw a Data control and a TextBox control on a form.
On the Properties window, set the TextBox control's DataSource property to the Data control.
Type the name of the field CompanyName into the DataField property box.
Insert code similar to the following into the code window:
Option Explicit
Private daoDB36 As Database
Private rs As Recordset
Dim sPath As String
Private Sub Form_Load()
sPath = _
"C:\Program Files\Microsoft Office\Office\Samples\Northwind.mdb"
Set daoDB36 = DBEngine.OpenDatabase(sPath)
Set rs = daoDB36.OpenRecordset("Customers")
Set Data1.Recordset = rs
End Sub