Nun, das soll kein Geimnis sein:
Im Button einer Form: (gar nicht solange her, das dieses Script hier jemand bereitgestellt hatte)
Set thisdb = s.CurrentDatabase
Set olduidoc = ws.CurrentDocument ' current uidoc
Set thisdoc = olduidoc.Document ' doc in memory but hasn't been saved yet
' select the doc to link to
Set coll = ws.PickListCollection( 3, True, thisdb.Server,thisdb.FilePath, "vwBuchS1", "Project List", "Please select a project." )
' if a doc isn't selected exit
If coll.Count = 0 Then
Messagebox "User canceled" ,,"No project was selected."
Exit Sub
End If
lg Andy