Tagged Questions
The istorage tag has no wiki summary.
4
votes
2answers
922 views
Drag and drop from C# to Windows Explorer with IStorage/IStream
I've been working on what sounds like simple functionality for way too long now. The idea is that I have an application with a TreeView. This treeview represents contents of a database organized ...
3
votes
1answer
769 views
Is IStorage's Compound File Implementation thread-safe?
I'm using IStorage's Compound File Implementation from C# (StgCreateDocfile).
Is it safe to access one IStorage / IStream instance from multiple threads, provided I synchronized the reads and writes ...
1
vote
0answers
53 views
Opening an IStorage from an IStream
I'm implementing a property handler for a structured storage file and would like to initialize it with IInitializeWithStream given its benefits of isolation, handling slow transfer, etc. But I see no ...
0
votes
1answer
18 views
Firefox Extension executeAsync Returns only 15 rows at a time
I am developing a firefox extension which reads and writes to a sqlite database. I ran an async query to fetch 20 rows from a database, and the callback function which handles the receipt of data gets ...
0
votes
0answers
32 views
why document stream,“WordDocument” not containg in ILockBytes for Word document
I need to get a ILockBytes (as stream of bytes) of the existing word document.
Then i am validating this ILockBytes for the document stream,"WordDocument", it always returning " 0x80030002 %1 could ...
0
votes
1answer
70 views
Opening Office 2007 Documents from in memory storage - How?
I'm a C++ developer wrestling with updating an application that had made extensive use of the IStorage interface to open pre-Office 2007 documents from in-memory storage (via ILockBytes).
If you are ...
0
votes
2answers
761 views
Releasing an OLE IStorage file handle in C#
I'm trying to embed a PDF file into a Word document using the OLE technique described here:
...
0
votes
4answers
518 views
VCL alternative to IStorage
To preface I am using Borland C++ and the VCL.
I need some sort of structured storage object which can be saved to disk as a single file and can contain multiple named blobs of binary data which I ...