TOP
>
WSHテクニック集
> [Wordを起動する]
'***
Set myobj = Wscript.CreateObject("Word.Application")
With myobj
.Visible = True
.Documents.Add
End With
'***
TOP