如何刷新 MS Access 2010 上的 webbrowser 控件?
我正在尝试这个:
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
webcontrol 在 Control Source 属性上有这个
="C:\Windows\Temp\test_report.html"
谢谢,