MS Access 2010 で Web ブラウザー コントロールを更新するにはどうすればよいですか?
私はこれを試しています:
Private Sub Btn_Report_Click()
'Create the report HTML...
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.CreateTextFile("C:\Windows\Temp\test_report.html")
message= "Test of line on variable"
objFile.WriteLine (message)
objFile.WriteLine ("This is the second line")
objFile.Close
End Sub
Web コントロールには、コントロール ソース プロパティにこれがあります。
="C:\Windows\Temp\test_report.html"
ありがとうございました、