Tagged Questions
Delphi 2007 is a specific version of Delphi. Delphi 2007 was released in March 2007, and was available as a standalone product or as part of RAD Studio 2007.
25
votes
3answers
3k views
Why 2 GB memory limit when running in 64 bit Windows?
I'm a member in a team that develop a Delphi application. The memory requirements are huge. 500 MB is normal but in some cases it got out of memory exception. The memory allocated in that cases is ...
22
votes
2answers
617 views
TStringList splitting bugs
Recently I've been informed by a reputable SO user, that TStringList has splitting bugs which would cause it to fail parsing CSV data. I haven't been informed about the nature of these bugs, and a ...
17
votes
3answers
4k views
Delphi MSBuild Build Configurations From Command Line
Delphi 2009 uses build configurations. When you create a new project you have two default build configurations "Debug" and "Release".
Now I asked myself how to automate builds using MSBuild (which is ...
16
votes
7answers
590 views
Wiki: Current state of the art of Delphi 3rd party TCP/IP components libraries
I've not been doing bare metal TCP/IP for about 18 months, so I wonder what the current state of the art is.
I'm looking for both positive and negative aspects, with development of both server and ...
15
votes
6answers
554 views
Initialise string function result?
I've just been debugging a problem with a function that returns a string that has got me worried. I've always assumed that the implicit Result variable for functions that return a string would be ...
14
votes
3answers
241 views
How to increase testability?
Background
I work in a team of 7 developers and 2 testers that work on a logistics system.
We use Delphi 2007 and modeldriven development with Bold for Delphi as framework.
The system has been in ...
14
votes
5answers
3k views
Best way to find if a string is in a list (without generics)
I want do something like this:
Result = 'MyString' in [string1, string2, string3, string4];
This can't be used with strings and I don't want to do something like this:
Result = (('MyString' = ...
12
votes
1answer
291 views
Why does this string have a reference count of 4? (Delphi 2007)
This is a very Delphi specific question (maybe even Delphi 2007 specific). I am currently writing a simple StringPool class for interning strings. As a good little coder I also added unit tests and ...
11
votes
3answers
227 views
How can I temporarily disable the “return value might be undefined” warning?
I want to disable a specific warning (W1035) in my code, since I think that the compiler is wrong about this warning:
function TfrmNagScreen.Run: TOption;
begin
if ShowModal = mrOk then
Result ...
10
votes
1answer
378 views
Delphi2007: Crash when continuing paused app in debugger
We often experience crashes when starting an app in the D2007 debugger, pausing it and continuing it (by pressing F9). E.g
create a VCL app
drop a TButton and a TEdit on the main form
add this ...
9
votes
2answers
213 views
AsyncCall with Delphi 2007
What I basically want is to start AsyncCall and proceed with my code loading. I have Interface section that consumes lots of time (600+ms) and I want to load this code in independent thread.
I've ...
9
votes
4answers
384 views
Why does line count change so much from D2007 to D2010?
Our app at work is a huge project with over 3000 units, weighing in about 3.5 million lines of code.
...or at least it was when we were compiling it under D2007. We recently updated to D2010, and ...
9
votes
3answers
2k views
In Delphi, how can you check if an IInterface reference implements a derived but not explicitly-supported interface?
If I have the following interfaces and a class that implements them -
IBase = Interface ['{82F1F81A-A408-448B-A194-DCED9A7E4FF7}']
End;
IDerived = Interface(IBase) ...
8
votes
2answers
323 views
Is there a `ProgressButton`?
I could like to have a button that does double duty as a progress bar.
+
= ........
E.g. a button that fills up with a green background as the task progresses.
I know I can create my own, but ...
8
votes
3answers
172 views
Equivalent to designer guidelines in code
The VCL form designer offers pink guidelines for aligning controls at their respective text base lines:
But as far as I can tell this doesn't work for labels and checkboxes. Update: It works for ...
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
5answers
360 views
Advantages of NOT versioning .dproj
I read in a blog about Version Insight (http://www.delphifeeds.com/go/s/77066) that (among others) JCL doesn't have its .dproj files under version control and i was wondering what the advantages of ...
8
votes
2answers
987 views
Removing the namespace from SOAP request
I have imported a WSDL and use it to send a SOAP request. It looks like this:
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ...
8
votes
4answers
629 views
Why should I use Free and not FreeAndNil in a destructor?
I have read A case against FreeAndNil but still don't understand why I cannot use this method in a class destructor ? Can anyone explain.
Update: I think the comment from Eric Grange was most useful ...
8
votes
3answers
928 views
Convert Hi-Ansi chars to Ascii equivalent (é -> e) in Delphi(2007)
Is there a routine available in D2007 to convert the characters in the high range of the ANSI table (>127) to their equivalent ones in pure ASCII (<=127) according to a locale (codepage)?
I know ...
8
votes
5answers
4k 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 ...
8
votes
5answers
5k views
Displaying splash screen in Delphi when main thread is busy
I'd like to display splash screen while the application is loading. However some 3rd party components block main thread during initilization for several seconds, which causes all forms not to update. ...
7
votes
1answer
212 views
Is it a good idea to make fields protected?
Code example:
unit Foo;
TFoo = class
protected
FList: TList; // Lifetime is managed by constructor and destructor
public
property List: TList read FList;
constructor Create;
...
7
votes
1answer
134 views
ImageList promisses me Alphablending, but how do I enable it?
I want my buttons to have images with alphablending on them.
As instructed I've included a TXPManifest component on my mainform.
Below are some images I've loaded into my project.
However my ...
7
votes
9answers
789 views
Inter-process communication
I have two applications: X and Y. X is the main application and it handles a lot of XML files. It has a history of more than 10 years and half a dozen techniques have been used to store, process and ...
7
votes
2answers
739 views
Delphi 2010 Wide functions vs. String functions
We're currently converting a Delphi 2007 project to Delphi 2010. We were already using Unicode (via WideStrings and TNT Unicode Controls).
I was expecting to replace all Wide functions, e.g. ...
7
votes
4answers
672 views
How can I detect a debugger or other tool that might be analysing my software?
A very simple situation. I'm working on an application in Delphi 2007 which is often compiled as 'Release' but still runs under a debugger. And occasionally it will run under SilkTest too, for ...
7
votes
2answers
6k views
Writing a string to a TFileStream in Delphi 2010
I have Delphi 2007 code that looks like this:
procedure WriteString(Stream: TFileStream; var SourceBuffer: PChar; s: string);
begin
StrPCopy(SourceBuffer,s);
Stream.Write(SourceBuffer[0], ...
7
votes
9answers
4k 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.
Is it ...
6
votes
3answers
274 views
A list class to store enums?
What List type I should use to store enum values? I have tried with TObjectList, I cast to TObject to Add the value, but can't cast it back to enum when reading from the list.
What list do you use to ...
6
votes
4answers
410 views
Unit <SomeUnit> Recursively Uses Itself (but it doesn't)
I have a datamodule that's used thoughout one of our line of business apps. It's in the implementation uses clause of almost every unit in the project.
I can modify business logic and other code in ...
6
votes
1answer
564 views
How do I copy a form as an image to the clipboard
I need to copy a form (Delphi 2007) to the clipboard as an image to paste what the user can see into a word document. The clipboard part is not really a problem. The questions is how to get a bitmap ...
6
votes
3answers
1k views
Who's setting TCP window size down to 0, Indy or Windows?
We have an application server which have been observed sending headers with TCP window size 0 at times when the network had congestion (at a client's site).
We would like to know if it is Indy or ...
6
votes
1answer
2k views
How do I get TAnimate's Common AVIs to work on Vista and Win7?
I have a Delphi 2007 application that has a TAnimate control with a FindFile Common AVI. It works perfectly when the application is run on Windows XP, but nothing ever appears on Windows 7. I've heard ...
5
votes
0answers
212 views
TIdHTTP - session has expired message under Delphi XE
I am trying to port my code from Delphi 2007 to Delphi XE (no Update 1 yet). The problem which I have stumbled on is that under Delphi XE I am getting different response from server after sending ...
5
votes
1answer
359 views
Why doesn't my program recognize mapped UNC paths?
I have some problems writing to a mapped network drive (P:) in Windows 7 from my Delphi program. When I try, for example, ForceDirectories('P:\test\folder'), I get an error (path not found).
I have ...
5
votes
3answers
140 views
Getting “ÿþI” as output data when reading from a .log file using delphi
I am trying to read data from a .log file and process its contents. The log file is created by another application. When I use the readln command in Delphi and display the contents of the file in a ...
5
votes
1answer
274 views
Windows 7-compatible icon set in a Delphi 2007 application
What is the right way to define a win7-compatible icon set in a Delphi application ? ( variable size on desktop )
I have designed a 256*256 icon then made the 16*16, 24*24, 48*48 variants. ( in ...
5
votes
1answer
150 views
How to passing a nil value in a in parameter of procedure of object type
I want to pass a nil value in a parameter which is declarated as procedure of object
Consider this code
Case 1
type
TFooProc = procedure(Foo1, Foo2 : Integer) of object;
procedure ...
5
votes
2answers
250 views
When does Delphi honor `inline` and when not?
I was tying to optimize a piece of code that has this construct:
while (i > 0) do begin
Dec(i);
This looks inefficient, so I tried to do this:
while (Dec(i) >= 0) do begin
That doesn't ...
5
votes
4answers
495 views
Find the last occurrence of char in a string
Does there exist any RTL Delphi function to determine the position of the last occurrence of a char in a string?
5
votes
2answers
318 views
How can I export a DBGrid to OOXML format (Excel 2007/2010 format) without Excel installed?
I have a Delphi 2007 DBGrid that I'd like to allow the user to save in the newer Excel format (OOXML), but my criteria is that the user does not need to have Excel installed. Is anyone aware of any ...
5
votes
2answers
366 views
How to avoid issues when embedding a TForm in another TForm?
I often embed a TForm descendant into another TForm descendant like this:
var
Form1: TForm1;
Form2: TForm2;
begin
Form2.Parent := Form1;
Form2.BorderStyle := bsNone;
Form2.Align ...
5
votes
3answers
219 views
How to remove errors (red underlines) in D2007
I have a lot of errors in structure panel. The application compiles and run fine with Delphi 2007. But the code have much code that have red underlines. If I press Ctrl + leftclick on it it finds the ...
5
votes
4answers
2k views
Detect disk activity in Delphi
I'm using Delphi 2007.
I am copying files to a remote drive. When the copying ends, I shutdown/standby the machine. It can happen that some files don't get copied from buffer to disk, and the remote ...
4
votes
1answer
58 views
Delphi 2007: IDE Model View: Generate Documentation missing?
In my Delphi 2007 IDE I've activated Model Support.
In the Model View, I can see all my classes and open an UML diagram for those classes.
But how can I generate documentation?
There is no Generate ...
4
votes
3answers
129 views
Get functionname from the functionpointer?
I have a pointer to functions like this.
TTestEvent = function(): Boolean;
procedure ExecuteTest(aTest: TTestEvent; aType: String);
begin
if aTest then
NotifyLog(aType + ' success')
else
...
4
votes
2answers
167 views
On a very slow query, how do I indicate percentage of progress
I'm using ZEOS components to connect to an (ancient) MDB database.
I'm doing a query that reads in lots of data to bridge into a different database.
Is there a way to indicate progress as a ...
4
votes
3answers
213 views
Delphi Application over the web [closed]
Possible Duplicate:
What Web Application Framework for Delphi is recommended?
We have a Delphi 2007 desktop application which we have hosted using Citrix. Now we want to get rid of Citrix ...
4
votes
3answers
408 views
FileExists() returns false, even if file exists
I want to check if a dll in System32 directory (Windows 7) exists. But even if it exists, FileExists() returns false. LoadLibrary returns a valid handle.
In this case, I only want to check, if the ...