0
votes
0answers
21 views
How to kill the focus of Microsoft Word™ document window?
Hi,
I'm developing a Word addin in Delphi, on a task pane I put a Virtual treeview, in the OnFocus event of the Virtual Treeview I call Word to insert a file into the current Word document via method …
0
votes
3answers
69 views
How to get IDispatch information from a variant property in a Delphi com object in VBA?
I have a COM object written in Delphi that has a property that returns a variant. Basically this property returns a value depending on the parameter I pass it. When I access the object from VBA (Excel …
1
vote
3answers
184 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 …
0
votes
3answers
92 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
2answers
106 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
102 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
945 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
113 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 …
2
votes
0answers
97 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 …
0
votes
6answers
430 views
How to reuse a (Delphi) OLE server with a second client?
I wrote an OLE automation server (using Delphi). I usually start the OLE server manually and use it as a normal application. From time to time I start a client, which
automatically connect to the …
3
votes
6answers
307 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
501 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
318 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
194 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
347 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 …
