M
MarcVS
I've done the upsizing of my Access database with the SSMA wizard of Access.
(Linked tables, not ADP)
Now I've got the following problem:
In my Code I have:
*****************************
Set DB = DBEngine.Workspaces(0).Databases(0) .
Set Kontrakt = DB.OpenRecordset("Kontrakten", DB_OPEN_DYNASET, dbSeeChanges)
Kontrakt.Index = "KlantId"
Kontrakt.Seek "=", Forms![Klanten]![KlantID]
KlantNrIn = Forms![Klanten]![KlantID]
*****************************
I get an error on the line 'Kontrakt.Index = "KlantId"' : 'Operation is not
supported on this type of object'
What could be the problem?
Marc
(Linked tables, not ADP)
Now I've got the following problem:
In my Code I have:
*****************************
Set DB = DBEngine.Workspaces(0).Databases(0) .
Set Kontrakt = DB.OpenRecordset("Kontrakten", DB_OPEN_DYNASET, dbSeeChanges)
Kontrakt.Index = "KlantId"
Kontrakt.Seek "=", Forms![Klanten]![KlantID]
KlantNrIn = Forms![Klanten]![KlantID]
*****************************
I get an error on the line 'Kontrakt.Index = "KlantId"' : 'Operation is not
supported on this type of object'
What could be the problem?
Marc