Tagged Questions

43
votes
2answers
1k views

Is COM broken in XE2, and how might I work around it?

Update: XE2 Update 2 fixes the bug described below. The program below, cutdown from the real program, fails with an exception in XE2. This is a regression from 2010. I don't have XE to test on but ...
33
votes
0answers
728 views

Use default authentication and separate cloaking/impersonation in DCOM call

I'm trying achieve two things with DCOM (Out of process) Set the process wide authentication using CoInitializeSecurity and its parameter pAuthList. Using cloaking to change the caller's identity in ...
11
votes
10answers
3k views

Hosting the .NET runtime in a Delphi Program

I was looking into using some .NET code from within a Delphi program, I will need to make my program extensible using .net assemblies and predefined functions (I already support regular DLLs). After ...
10
votes
5answers
848 views

Delphi plugin framework

I want to design Delphi plugin framework. There are three options: 1. DLL 2. BPL 3. COM interface Every option has some disadvantage. DLL - Promblem with MDI apllication, forms from plugin cannot be ...
10
votes
5answers
3k views

How to Create an Outlook Plugin using Delphi?

I'm working on a database project and I need to create Outlook 2007 plugin that saves the current previewed message into my database. Can someone give me a step-by-step guide on how to create an ...
8
votes
1answer
178 views

What is the correct way to free an interface behind an OleVariant?

I am trying to find a safe/deterministic way to release an interface which is encapsulated in an OleVariant. AFAICS Delphi releases interface references at the end of a procedure, but in my case I ...
8
votes
3answers
351 views

COM method offsets in Delphi

In Delphi, how do I find out the the address of a COM method? I can hardcode the offsets //0 is the offset of the QueryInterface method p := TPonterArray(pointer(SomeInterface)^)[0]; but I would ...
8
votes
8answers
4k 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 ...
8
votes
3answers
2k views

Delphi 2009 COM/ActiveX Type Library support stability

Referring to TLB and maintenance issues ... My question to people (often) using the new COM/ActiveX type library support in Delphi 2009: How stable is the implementation? Especially, I'm interested ...
7
votes
2answers
183 views

Excel add-in with seamless Undo: possible?

I am considering implementing an Excel add-in using COM (not VBA) that will manipulate data in the worksheet. I am going to need this add-in to seamlessly integrate with the Undo stack. More ...
7
votes
3answers
357 views

What's the recommended implementation for hashing OLE Variants?

OLE Variants, as used by older versions of Visual Basic and pervasively in COM Automation, can store lots of different types: basic types like integers and floats, more complicated types like strings ...
6
votes
2answers
253 views

Third party code is modifying the FPU control word

The introduction - the long and boring part (The question is at the end) I am getting severe head aches over a third party COM component that keeps changing the FPU control word. My development ...
6
votes
4answers
237 views

Destroying COM object in Delphi

Have some .net assembly, calling it in delphi through COM. var intf: ITest; ... intf:= CreateComObject(CLASS_TEST) as ITest; ... //here comes some stuff ... Must i do something to ...
6
votes
3answers
304 views

How do you unit-test code that interacts with and instantiates third-party COM objects?

One of the biggest issues currently holding me back from diving full steam into unit testing is that a really large percentage of the code I write is heavily dependent on third-party COM objects from ...
5
votes
1answer
172 views

What explains this strange PeekMessage behaviour (trying to deal with a full message queue, filtering for specific messages)?

Our application acts as a COM server where all automation occurs within a single STA apartment (in the application's main thread), and some VBS scripts which make lengthy (>10 minute) calls are ...
5
votes
3answers
255 views

How to combine large XML files using MSXML SAX in Delphi

What is the best way to do a simple combine of massive XML documents in Delphi with MSXML without using DOM? Should I use the COM components SAXReader and XMLWriter and are there any good examples? ...
5
votes
1answer
146 views

how can i identify an MS Excel object type?

I'm using late binding OLE automation to work with Excel. The problem is that I don't know how to work with the value returned by Selection because I don't know what type it is... How can I ...
5
votes
3answers
386 views

Delphi objects, NIL objects and Interfaces

I am looking for hints on how to debugging a crash in an application that uses the MS XML wrappers in the Delphi VCL. I suspect memory corruption, or some kind of obscure evil thing happening ...
5
votes
1answer
224 views

Delphi stack misalignment + com marshalling = wrong marshalling

This is not exactly a straight-out question because I have just solved it, but more like "am I getting it right" type of question and a reminder for those who might get stuck into that. Turns out, ...
5
votes
1answer
463 views

Is there a way to load a Crystal Report 9.0 file from a stream?

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 report ...
5
votes
2answers
2k 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 ...
5
votes
3answers
4k views

Why does regasm.exe register my c# assembly with the wrong GUID?

I've got a c# assembly which I'm invoking via COM from a Delphi (win32 native) application. This works on all the machines I've tested it on, except one. The problem is that the Delphi application ...
4
votes
2answers
179 views

Delphi Excel COM-Addin

I am writting an MS Excel COM-Addin in Delphi 2006. I'm have Excel 2007 installed on my development machine. I started the project as an ActiveX Library and then added an Automation object from the ...
4
votes
1answer
191 views

Debugging .Net4 COM registered assembly from Win32 caller in Visual Studio 2010

This is a very simple setup, I can't believe but I didn't find anybody with the same problem so far... Create a .Net4 class library in VS2010. Create a simplest possible COM object: ...
4
votes
1answer
176 views

How to make COM object's method be run not in main thread

I have a windows service which implements a COM local server. When running as application the COM object methods are called in a separate (not in the main) thread which is just fine. Things change ...
4
votes
2answers
229 views

Wrong exception after calling .net4.0 com server from delphi application

We are migrating our codebase from BDS2006 to Rad Studio XE, and we found some very strange behavior: if we make invalid floating point operation (ie. division by zero) after creating some object from ...
4
votes
1answer
195 views

How can script source position determined from inside an automation call?

I have a script host which runs JScript. There are some cases when I have to trace if a method of my exposed objects is called and from where it got called. For that I need to determine where is the ...
4
votes
2answers
291 views

How to write an EXE which is also a COM Server in Delphi

I have a Delphi (2007) application which is just a standard exe, and I would like to add a COM interface to it. I already have a COM dll which exports several COM objects and this is working ...
4
votes
2answers
276 views

How does a .NET program behave differently when run with and without debugging in Visual Studio?

I'm getting an Access Violation in DBEXPSDA40.DLL (Dev Art MS SQL Server dbexpress driver) on closing down my .NET application. My application (VB.NET) calls a Delphi written COM Server which uses ...
4
votes
6answers
591 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 ...
4
votes
5answers
742 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 ...
4
votes
5answers
765 views

Is there an implementation of “getopt” for Delphi?

It doesn't get much easier than using getopt() to parse command line parameters in C/C++. Is there anything similar for Delphi? Or ideally, with the same syntax? I know Delphi supports ...
4
votes
5answers
2k views

Delphi and COM: TLB and maintenance issues

In the company that i work, we develop all the GUI in C#, but the application kernel is mainly developed in Delphi 5 (for historical reasons), with a lot of components made in COM+. Related to this ...
3
votes
2answers
161 views

serial port won't work in delphi

I'm creating a simple program in Delphi, to send character through COM port using 2 parameters, the first parameter is the port number and the second parameter is the character to be sent. So if i ...
3
votes
1answer
115 views

Sink COM events without mapping dispids manually to methods

I have an IConnectionPointContainer and know the connection point whose events I want to sink. Now I need to write a class containing callback methods for these events. So basically I am doing this: ...
3
votes
1answer
187 views

How does CreateStdDispatch know what method to invoke?

i'm faced with implementing an IDispatch interface. There are four methods, and fortunately 3 of them are easy: function TIEEventsSink.GetTypeInfoCount(...): HResult; { Result := E_NOTIMPL; } ...
3
votes
2answers
231 views

Outlook msg files stored in local disk, how to read with delphi

I need to retrieve the body of outlooks' msg files stored on a local disk and extract some information from each one, their format is always the same only the data changes, please advise. thanks in ...
3
votes
3answers
666 views

How to release memory used by IHTMLDocument?

is there a way to release memory after using IHTMLDocument (IHTMLDocument2) ? Currently I'm using EmptyWorkingSet function but I feel that it's not a good way to do it ...
3
votes
1answer
182 views

How to raise Exceptions in a COM Server?

How do I raise exceptions in a COM server to be consumed be a COM client? My server and client are written in Delphi if that makes any difference? Basically I have a background thread checking various ...
3
votes
2answers
161 views

How to stop a Delphi 6 COM server application re-registering with COM at startup

I have a set of legacy Delphi 6 aplications that are out of process COM servers. In attempting to run these programs as a normal domain user on Windows I see them when running up (without any command ...
3
votes
1answer
351 views

Retrieving Outlook 'Inbox' and 'Sent' folders in Delphi using OLE

What's the best way to go about extracting Outlook folders from within Delphi? Ideally I'd like to retrieve the Inbox folder and any other folders within it. I don't require the email headers/message ...
3
votes
1answer
203 views

Cross-process singleton object

This is a variation on another Q of mine. I have two applications, X and Y. They have to share a single COM object between them. X will be sending data to this object and Y will respond on events sent ...
3
votes
2answers
164 views

Which is the proper way to work with LateBinding in Delphi?

actually i am using late-binding in delphi, and i need to know wich is the proper way to work with it. My principal concern is about how I handle the memory used by these objects, I must free the ...
3
votes
1answer
935 views

Delphi CreateOleObject events

there is a code var myobject:OleVariant; begin myobject:=CreateOleObject('SomeNamespace.SomeClass'); end; this com object has event OnClick for example. How must I connect to them without ...
3
votes
0answers
244 views

Problem with triggering Events in a .NET DLL via COM from Delphi

i have a problem with COM objects and triggering events. I have: a DLL written in C#.NET (3.5), which triggers events an application in Delphi5, which uses the DLL as a COM object. So far so good. ...
3
votes
1answer
331 views

How to check if OleInitialize has already been called?

I want to write a Delphi function to register a dll. I want the function to check if OleInitialize has already been called before it does so. I guess I'm trying to avoid the consequences of ...
3
votes
2answers
219 views

Making object model available via Automation in Delphi: what’s the easiest way?

We’re rewriting a calculation core from scratch in Delphi, and we’re looking for ways to let other people write code against it. Automation seems a fairly safe way to get this done. One use we’re ...
3
votes
1answer
740 views

Exposing C# COM server events to Delphi client applications

My question is very similar to these two: http://stackoverflow.com/questions/1140984/c-component-events http://stackoverflow.com/questions/1638372/c-writing-a-com-server-events-not-firing-on-client ...
3
votes
2answers
123 views

accessing a static property via COM

is it possible to access a static property of a COM object without creating an instance of the object? my situation is this: i have an unmanaged application (written in delphi). this application ...
3
votes
3answers
1k 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 2 3 4