VBA/Excel/Access/Word/File Path/Print to File
Версия от 16:33, 26 мая 2010; (обсуждение)
Logging Excel usage
Private Sub Workbook_Open()
Open Application.Path & "\text.txt" For Append As #1
Print #1, "Started " & Now
Close #1
End Sub