If that is the case then i'm not sure what is causing the error, the creation of the html is working, but then failing on the save.
The code that is causing the issue is:
- Code:
-
Try
Dim file As IO.StreamWriter = IO.File.CreateText(savepath)
file.WriteLine(temphtml, False, Encoding.UTF8)
file.Close()
MsgBox("Movie List Saved OK")
Catch ex As Exception
MsgBox(ex.ToString)
End Try
where "savepath" is the path selected in the save dialogue
and
"temphtml" is the actual html
In the past I added the msgbox so that details of an issue encountered was presented to the user. What is the error message you are getting?