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 …
5
votes
1answer
482 views
What is the best way to implement C#’s BackgroundWorker in Delphi?
I use C#'s BackgroundWorker object frequently to start a th …
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 …
1
vote
6answers
446 views
Advice for Getting By in the Delphi IDE without VI
As a long time VIM user, it pains me to have to use the Delphi IDE. At least with Visual Studio there's ViEmu which works well.
So, do you h …
1
vote
4answers
267 views
Is There a TSpinEdit for Floats in Delphi?
Is there really not a TSpinEdit control for floats in Delphi? It looks like there are third party components that supply a …
2
votes
3answers
200 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
3answers
663 views
Accessing LocalApplicationData Equivalent in Delphi
Using Delphi, how do I access the equivalent of .NET's System.Environment.SpecialFolder.LocalApplicationData variable (which works on any version of Windows)? I assumed I could just do:
…
4
votes
5answers
560 views
Why Do Some Delphi Components Require “AOwner: TComponent” To Construct Them?
It seems completely irrelevant to require a TComponent as an owner to instantiate an object of some kind. Why are there so many Delphi components that require this?
For example, TXMLDocume …
0
votes
4answers
1k views
Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C#
I'm trying to access an OleVariant in a callback that is coming from an ActiveX library.
Here's what the event handler is defined as in the TLB:
procedure(ASender: TObject; …
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 …
1
vote
5answers
414 views
What Happens to an Object That Falls Out of Scope in Delphi?
When an object that is created within a function and the function is completed, what happens to the object if it wasn't explicitly destroyed?
Do all variables need to be destroyed when they …
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 …
3
votes
3answers
832 views
Convert TDateTime to Another Time Zone Regardless of Local Time Zone
Regardless of what the user's local time zone is set to, using Delphi 2007, I need to determine the time (TDateTime) in the Eastern time zone.
How can I do that? Of course, needs to be day …
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 …
