Search Results

0
votes
2answers
250 views

How do I use OLE-DB to access a dbf file in an COM/C++ ATL application?

I need to access the data contained in a dbf file in COM/C++ application (created via ATL). How would I do that? I've been reading tons of msdn articles very instructive about the OLE-DB pr …
0
votes
1answer
101 views

COM basic sample

I've been reading Essential COM, it is a very good book, very instructive and simple to understand. Now I want to sp …
0
votes
4answers
615 views

How to read an XML file in a Visual C++ application?

How to read an XML file in a Visual C++ application? I need to read an XML file in a Visual Studio 2003 C++ COM ATL application - unmanaged code. What library should I use: msxml, xmllite, …
6
votes
2answers
336 views

In COM: should I call AddRef after CoCreateInstance?

Does CoCreateInstance automatically calls AddRef on the interface I'm creating or should I call it manually afterwards? …
0
votes

How do I use OLE-DB to access a dbf file in an COM/C++ ATL application?

I found this old Tutorial in Code Project but it fits my needs by now. http://www.codeproject.com/KB/data …