1
vote
2answers
68 views
What are dispinterface declarations used for?
When you create a type library in Delphi and create an interface and the associated CoClass, Delphi also creates matching dispinterface declarations.
My understanding is that thes …
0
votes
4answers
83 views
one way communication from background exe to activex (sidebar gadget)
I need a small communicator between an application/background process and the gadget, I think its easiest to make own activex module that has just getText() and setText(). I need t …
1
vote
1answer
106 views
Is it possible to add additional GUIDs to a typelib?
I have a typelib that describes some interfaces. As some of these interfaces are used as a category, I want to add the category IDs to the typelib. So the question is:
a) how can …
1
vote
0answers
74 views
Is there a way to load a Crystal Report 9.0 file from a stream?
Hi.
I am working with Delphi and Crystal Reports 9.0 ActiveX objects.
I know that I can load a report from a file like this:
crApplication.OpenReport(AFileName)
However, I woul …
6
votes
8answers
781 views
Using a COM dll from C# without a type library
I need to use a COM component (a dll) developed in Delphi ages ago. The problem is: the dll does not contain a type library... and every interop feature (eg. TlbImp) in .NET seem t …
3
votes
6answers
286 views
Delphi App Communicates with Program That Ends Up Crashing Occasionally - Vendor Blames My Delphi App
I've written a Delphi DLL that communicates with a third party program via COM. Some users report that the third party program crashes occasionally. Others using the software in …
3
votes
2answers
422 views
Memory leak using WMI in Delphi 7
I'm experiencing a memory leak when using WMI from Delphi 7 to query a (remote) pc. The memory leak only occurs on Windows 2003 (and Windows XP 64). Windows 2000 is fine, and so is …
3
votes
3answers
270 views
How to get the GIT in Delphi 7?
I'm trying to get the Global Interface Table by using the following code (Delphi):
uses Comobj, ActiveX;
var
cGIT : IGlobalInterfaceTable = NIL;
const
CLSID_StdGlobalInterf …
1
vote
4answers
158 views
How to get all the classes and properties of a Com Object.
Hello everybody,
Anyone knows if there is any Delphi component or library that I could get all the classes, properties and types of an Com Object (something like a parser).
i w …
1
vote
2answers
105 views
New Version of Third Party COM DLL - How to Install and Keep Old Versions in Delphi?
I need to have my Delphi program use a new version of a third party DLL. I'd like to be able to use the new version but revert to the old version if I need to.
Some of the object …
4
votes
5answers
299 views
Prevent Delphi COM component from showing MessageBox()
We have a Delphi 2007 COM component being executed from an ISAPI app. The COM component is hanging the app because it is attempting to display a MessageBox(). The call to Message …
2
votes
3answers
161 views
COM problem between Unmanaged C++ and Delphi
Hi
I have a DLL in unmanaged C++ :
EditArticleManagerFactory.h:
class __declspec(dllexport) EditArticleManagerFactory : public NamedClassFactory<SCEditArticleManager>,
…
1
vote
2answers
211 views
Creating new C# version of existing COM object to use in Delphi program
We had a bit of a problem where we have lost some source code for a very old ActiveX component we had. We've got a Delphi7 program that calls the Active X component. Thats a bit of …
2
votes
3answers
352 views
Receiving complex javascript values through external interface
I'm trying to receive and potentially send complex values through TWebBrowser (using TEmbeddedWB) with the provided external object.
For example; in javascript I would try to use t …
0
votes
3answers
148 views
How to make a .net(c#) library which can be used in delphi [closed]
Possible Duplicate:
Create a C# DLL That Can Be Imported in a Delphi App Using stdcall - Possible?
I am creating a c# library and like to make this library as com componen …
