Tagged Questions
4
votes
2answers
924 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 ...
1
vote
0answers
48 views
C# wrting/burning large wav file on Audio CD
I used this article to write Audio CD
Creating Audio CDs using IMAPI2
Following this article i can write Audio CD, but with smaller wav files (upto 30 min audio file)
And OutOfMemoryException is ...
1
vote
2answers
2k views
C# and IStream.Read
I'm trying to use System.Runtime.InteropServices.ComTypes.IStream from C#, but I'm having some trouble. According to MSDN, the C# definition looks like this:
void Read(
byte[] pv,
int cb,
...
1
vote
2answers
905 views
How to store an IStream to a file via C#?
I'm working with a 3rd party component that returns an IStream object (System.Runtime.InteropServices.ComTypes.IStream). I need to take the data in that IStream and write it to a file. I've managed ...
0
votes
1answer
128 views
PInvoke and IStream
I have an exported function from a dll written in c++ with the following signiture:
Foo( LPSTREAM *pStream, UINT &Size )
that returns an memory stream and obviously its size. What I am having ...
0
votes
3answers
644 views
Accessing “Mapi32.dll” with C#
I am using VS 2008 C#
Windows Application.
I have this DLL Import I am trying to use.
[DllImport("Mapi32.dll", PreserveSig = true)]
private static extern void
WrapCompressedRTFStream(
...
0
votes
1answer
354 views
How do I declare an IStream in idl so visual studio maps it to s.w.interop.comtypes?
I have a COM object that takes needs to take a stream from a C# client and processes it. It would appear that I should use IStream. So I write my idl like below. Then I use MIDL to compile to a tlb, ...
0
votes
4answers
1k views
Getting an IntPtr to a ulong variable in C#
I need to pass an IntPtr to IStream.Read, and the IntPtr should point to a ulong variable. How do I get this IntPtr that points to my ulong variable?