こんにちは、このエラーを整理する方法を教えてください
**Exception from HRESULT: 0x800A0046 (CTL_E_PERMISSIONDENIED)**
ファイルに文字列データを書き込んでいるときに、このエラーがスローされることはほとんどありません。
私がVB.netで使用している以下のコードを見つけてください
Dim fso, file
strResult = "this is the sample string data"
strPath = it is local path only.
fso = CreateObject("Scripting.FileSystemObject")
file = fso.opentextfile(strPath, ForWriting, True)
file.write(strResult)
file.Close()