Beispiel für ActiveX-Automation (Windows)BeispielcodefürZugriffaufFileMaker Pro
'inVisualBasic.
'
'"FileMaker Pro7.0TypeLibrary"mussinVisual
'BasicProject/Referencesgeprüftundverfügbarsein.'Dim FMApp As FMPro70Lib.Application
Dim FMDocs As FMPro70Lib.Documents
Dim FMActiveDoc As FMPro70Lib.DocumentFileMakereinblenden(beimStartvonAutomationist
'FileMakerstandardmäßigausgeblendet.)'If FMDocs.Count = 0 Then
Debug.Print "Keine Dokumente geöffnet"
Sonst
Debug.Print "Anzahl geöffneter Dokumente:"; FMDocs.Count
Ende (wenn)Hinweis:DieFileMaker-Datei"c: esting.fmp12"mussmitdemScript
'"ErstesScript"verfügbarsein,damitdiefolgendeAnweisung
'ausführbarist.'Dim myOpenFile As Object Hinweis:kannauchdeklariertwerdenals
'FMPro70Lib.DocumentSet myOpenFile = FMDocs.Open("c: esten.fmp12", "","")
myOpenFile.DoFMScript ("Erstes Script")Debug.Print "Dokument wird geschlossen: "; TempDoc.FullName
TempDoc.Close
Set TempDoc = Nothing
Next
Ende (wenn)FMApp.Quit
Set FMApp = Nothing