4
votes
5answers
976 views
Can I Use a .NET DLL in “Delphi 2007 for Win32”?
Is it possible to use a .NET DLL in Delphi 2007 for Win32? I've tried to import the DLL in the same way I've done for an ActiveX component, but it doesn't appear to work (Component Menu -> Import …
1
vote
1answer
387 views
Generate Code for Invisible ActiveX Object Event Handlers in Delphi
You know in Visual Studio you can use the "+=" syntax and a couple tabs to have it autogenerate the code for an event handler?
How do I accomplish the same thing in Delphi? I'm trying to c …
0
votes
2answers
559 views
Setting Up Event Handler in Delphi 2007 and Getting “Parameter Lists Differ” Error
I'm trying to write a class in Delphi 2007 that uses a ActiveX library. The class will catch an event that the ActiveX library has to expose its own event that adds some information to the ActiveX …
2
votes
3answers
199 views
Switching Control Types (but not names) for Lots of Controls on a Form in Delphi
I need to switch every control of a particular type on a form to a different type while maintaining the name and the code associated with each control.
For example, let's say I need to swit …
0
votes
4answers
558 views
Accessing Variable in Parent Form from OnTimer Event - Getting Exception
I'm getting an exception in an OnTimer event handler (TTimer) that when executed increments an integer variable in the parent form. The timers need to be able to access an incremented integer used …
0
votes
2answers
310 views
How To Subclass A Form in Delphi? Best Practices?
I've got a base form in Delphi 2007 that I'd like to reuse in another project, adding some other buttons and such.
I'm familiar with subclassing a non-GUI object, but it is possible to subc …
0
votes
4answers
162 views
App That Uses SDK BSODs in Delphi 2007 But Works in C#
I'm coding an application that uses a third party SDK (OCXs). I use the SDK in C# and it works just fine. However, I can create the simplest test application with the same objects from the SDK in …
0
votes
0answers
283 views
Exception in Delphi App: EOleError Could Not Obtain OLE Control Window Handle
I'm coding a Delphi application using Delphi 2007. I'm using a third party OCX and when I try to show a form from the main form I'm getting an exception:
Exception class EOleError with mes …
3
votes
8answers
646 views
Create a C# DLL That Can Be Imported in a Delphi App Using stdcall - Possible?
I have a program that I need to create a DLL for, hopefully in C#. The program is written in Delphi and I have an interface file to code to. The interface uses the stdcall calling convention. …
1
vote
2answers
109 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 invi …
0
votes
Setting Up Event Handler in Delphi 2007 and Getting “Parameter Lists Differ” Error
I used gabr's advice with the Ctrl+click and discovered that one of the parameters was a constant which I did not realize. I changed the second variable to a const and it worked fine. Thanks. …
0
votes
App That Uses SDK BSODs in Delphi 2007 But Works in C#
It turns out this was caused by Kaspersky antivirus. I tracked it down by running Windbg against th …
