Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
611 views

How to recompile a specific unit from the VCL?

I want to apply a fix from QC to a Delphi 2009 unit (DBClient as it happens). I know I need to copy the unit to another directory and make the change to the copy. How do I then get Delphi to compile ...
5
votes
5answers
420 views

Does it make a difference if I clean up my uses clause if the removed units are still used in other units?

Personally I like it if my uses clauses are as small as possible, but in many applications the really big units (in terms of bloating the executable) like Forms or VirtualTrees are needed in at least ...
4
votes
8answers
3k views

Why are my units “compiled with a different version” of my own files?

I'm building a program that uses plugins. Unfortunately, the plugin framework's dynamic linking forces the RTL and VCL out of my project EXE and into the BPL versions, and they don't have debug info ...
2
votes
2answers
896 views

How to run procedure from another unit?

Well this kind of n00b question but I still can't figure it out. I have unit main with procedure Discard() in it. Now I have another unit engine and I want to run from it procedure Discard() of unit ...
2
votes
3answers
492 views

“Duplicate” units in Delphi by name, referenced by components, problem with compile

We are using several component packages by different vendors, and two of them both have a "regexp.pas" unit available inside their directory structure. Problem now is that regardless of the order we ...
2
votes
3answers
1k views

How to use Unit files in Delphi

I'm just trying to get the hang of separate units to make my code more encapsulated. I'm trying to get the public/private declarations of my methods sorted out, so I can call them from other units ...
1
vote
1answer
86 views

Is it safe to use only Data and System scoped units to build mutiplatform

Since XE2 the Delphi units are scoped. Unit Scope Names Unit Names Is is right to say that if I use only System and Data scoped units my code will be multiplatform and compiled for both Mac and ...
1
vote
2answers
2k views

Delphi XE - F1027 Unit not found: 'System.pas' or binary equivalents (.dcu) upon Activation of trial version

I just purchased the full version of Delphi XE Architect after using the trial version for 30 days. I can't build anything, every time I go to build a project I get the error. [DCC Fatal Error] ...
1
vote
3answers
468 views

Delphi Unit local variables - how to make each instance unique?

Ok, this, I'm sure is something simple that is easy to do. The problem : I've inherited scary spaghetti code and am slowly trying to better it when new features need adding - generally when a ...
1
vote
3answers
451 views

Accessing data stored in another unit Delphi

In Unit2 of my program i have the following code: TValue = Record NewValue, OldValue, SavedValue : Double; end; TData = Class(TObject) Public EconomicGrowth : TValue; Inflation : TValue; ...
1
vote
8answers
660 views

Defining types from other units in Delphi

Var A : Array [1..4] of Integer; B : Array [1..4] of Integer; Begin A := B; Won't work as loren-pechtel said here the problem is A and B for me are in different units. So, is there a ...
0
votes
3answers
145 views

How to reference a unit (in runtime) if I only have its string name in Delphi?

I have types in distincts units with the same name and I have the unit name in a string. I need to access the specific type of this unit. How do I do that? Example: unit Unit1 type TFooType = ( ...
0
votes
4answers
542 views

Uses with unit file path in unit file

I have problem. I ll try to explain it. I have a unit which has a class and may will have new functions. D3BF4E849ACC45249B990F802EFB1F15\UnitFile1.pas 8DC8977E7A7B469AACFE3CC77CA7075E\UnitFile1.pas ...
0
votes
1answer
451 views

How can i CloseComm, OpenComm, WriteComm and ReadComm with the windows unit?

I have an old comm unit that uses WinTypes,WinProcs. As i understand these were merged too the Windows unit. Are there similar functions in the Windows unit?
0
votes
3answers
1k views

Circular reference issue with Classes which use each other

I have the following two classes: TcmTPDataPanel = class(TcmTPBasePanel) Database: TnxDatabase; Session: TnxSession; private FDataConnector: TcmTPDataConnector; MyNxDataBase: ...