Hi Paul,
My guess is you'd have to download the file, edit it locally, and then
upload the modified copy.
I'll help you with the part I know opening the local copy, replacing some
text, and saving the changes:
Dim strFile as string
strFile = "The File You Downloaded.htm"
FileOpen(1, strFile, OpenMode.Input, OpenAccess.Read, OpenShare.LockWrite)
FileSystem.Input(1, strDocument)
FileClose(1)
strDocument = Replace(strDocument, "Shit", "Sh..")
'Opens our document for output, with write only access, and locks the
writability until we're done
FileOpen(1, strFile, OpenMode.Output, OpenAccess.Write, OpenShare.LockWrite)
'Writes the strDocument text to the file
FileSystem.Write(1, strDocument)
'Closes our handle to the file, allowing all programs to edit the file
FileClose(1)
Cheers,
Christian