■No101669 (初心者 さん) に返信
> FileOpen関数のエラー詳細内容の確認方法はないでしょうか?
Try 〜 Catch で取得できる例外の情報では不足ということですか?
Try
Dim fileNo As Integer = FreeFile()
FileOpen(fileNo, "\\server\hoge\hoge.txt", OpenMode.Input)
Try
Dim value As String = Nothing
FileGet(fileNo, value)
Finally
FileClose(fileNo)
End Try
Catch ex As IO.IOException
Debug.WriteLine(ex.ToString()) '←コレ
End Try