Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How can I check if excel File is open before writing to it?
Message
From
22/07/2003 15:24:38
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
How can I check if excel File is open before writing to it?
Miscellaneous
Thread ID:
00812502
Message ID:
00812502
Views:
57
I have code that reads binary data (an embedded excel spreadsheet) from a sql server table using an ADODB.Stream. Then it writes the excel data back to the users local drive.

However, if the user chooses an excel filename to save to, and that file is already open in excel, I get an Ole error.

I can check for this with my error handler, and if the write fails just close the stream and tell the user that the file is already open. However, my question is, is there anyway that I can test if the file is already open, without generating an error and without using error handling code

A portion of the code is below

omstream.Type = adTypeBinary
omstream.Open()
ovalue=ors.Fields("FILECOL")
omstream.Write(ovalue)
omstream.SaveToFile(lcFileName, adSaveCreateOverWrite)
omstream.close()


TIA
Next
Reply
Map
View

Click here to load this message in the networking platform