0
votes
3answers
86 views
Is there any alternate way to supply similar functions as COM does?
Window's COM allow us to wrap our application function for out-of-process invocation. If the COM interfaces are well defined and design, it is certainly great to consume the services via scripts and …
1
vote
3answers
134 views
How to get the current logged on user, including domain in Delphi 2009?
I need to get the current logged on username? I need this to work properly when I call the code from ASP.NET which is working in Windows Authentication mode. i.e. I do not want to get the ASPNET user …
1
vote
2answers
96 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 these relate to the fact …
0
votes
4answers
92 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 to pass a string once …
6
votes
8answers
899 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 to rely on TLBs. The …
1
vote
1answer
111 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 this be done in …
1
vote
0answers
86 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 would like to store my …
3
votes
6answers
295 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 an identical fashion …
3
votes
2answers
471 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 Windows 2008. I'm …
3
votes
3answers
295 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_StdGlobalInterfaceTable: TGUID = …
1
vote
4answers
178 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 want to …
4
votes
5answers
331 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 MessageBox() must be …
1
vote
2answers
110 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 objects are invisible …
2
votes
3answers
172 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>,
public …
2
votes
3answers
371 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 the exposed method …
