Thread: VB6 Make Errors
View Single Post
  #2  
Old 10-25-2005, 01:04 PM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,013
Normally, the /out filename will be a temporary file (the name is generated using the GetTempPath and GetTempFileName APIs). In your case, these calls are apparently failing, resulting in an empty string for the output filename (which VBP reports when it can't read a file by that name after building [to log the file contents]).

Nothing has changed in VBP 6 regarding this action, so I suspect that either the error was occurring before and it wasn't noticed, or something changed on the box to cause the generation of a temporary filename to fail. I'm not sure what would cause that; you might make sure that the system TEMP environment variable exists and points to a valid path.
Reply With Quote