> Any ideas on what is going on and how to fix it?

Ed,
There's probably a some file error happening. Don't assume .CreateTextFile
was successful. For example:
 
> Dim fi as FolderItem
> Dim tos as TextOutputStream
> fi = GetFolderItem("Temp.html")
> tos = fi.CreateTextFile

  if fi.ErrorCode <> 0 then
     tos.write stuff
     tos.close
  else
    // put error code/actions here.
  end
 
See folderitem in the language reference for the meanings of the various
error codes. 

HTH,

Keith DeLong


_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to