Hallo Leute,
nach dem Umstieg auf Access 2007 funktioniert das Aktualisieren von Formularfeldern in Abhängikeit eines anderen nicht mehr, im Feld Kurz erscheint die Meldung „?Name“:
Private Sub bürowahl_AfterUpdate()
Dim Office As Integer
Set ws = DBEngine.Workspaces(0)
Set db = CurrentDb()
Office = Me!Bürowahl.Value
Set officeset = db.OpenRecordset("select * from servicebüros where servicebüros![büronr] = " & Office, dbOpenSnapshot)
Me!Kurzn.ControlSource = „=officeset!kurzname“
End Sub