Microsoft 製品に組み込まれている Visual Basic の実装。
下記のようなコードでどうぞ。
Dim acApp As Access.Application
Dim strDBPath As String
strDBPath = "C:\test\test.mdb"
Set acApp = New Access.Application
acApp.OpenCurrentDatabase strDBPath
acApp.DoCmd.OpenForm "F_入力画面", acDesign
acApp.Forms!F_入力画面!テキスト0.FontSize = 10
acApp.DoCmd.Close acForm, "F_入力画面", acSaveYes
acApp.Quit
Set acApp = Nothing