Tagged Questions

Delphi 6 is a specific version of Delphi. Delphi 6 codename is Iliad. Delphi 6 was preceded by Delphi 5 and succeded by Delphi 7.

learn more… | top users | synonyms

8
votes
4answers
1k views

Delphi - How to prevent Forms/MsgBoxes to move under prior form?

Many times we experienced after Windows 98 era that some dialogs are lost their Z-Order, and moved back to prior form. For example: Dialog1.ShowModal; Dialog1.OnClickButton() : ...
7
votes
8answers
808 views

How reliable is the Random function in Delphi

I am writing a program which write statistical tests in Delphi (must be Delphi) and I've heard that the Random functionality is somewhat odd. You have to call randomize to randomize the seed of the ...
7
votes
7answers
728 views

Delphi - equivalent to C# DateTime.IsDaylightSavingTime() method needed

I need somehow to determine whether some TDateTime value is within the Daylight Saving Time range for my timezone or not (in C# the same thing does the DateTime.IsDaylightSavingTime() method). I know ...
7
votes
5answers
1k views

How to force Delphi compiler to display all hints and warnings

Is there a way to force the Delphi compiler to display all hints and warnings all the time? Here is the behavior that I am currently seeing in Delphi 6: Check out fresh copy of my application from ...
6
votes
3answers
169 views

Determining process virtual size using delphi

I have a Delphi program and I'm looking how this program could print its own "virtual size" in a log file, so that I can see when it used too much memory. How can I determine the "virtual size" using ...
6
votes
1answer
152 views

Access “bad sites” list from embedded Chromium?

Embedded Chromium does not have the same protection as stand-alone Chrome does when it comes to warning users about "bad sites". Users of Chrome are familiar with the warning screen that comes up ...
6
votes
2answers
468 views

Proper handling of modal window “Minimize” behavior

I have the following issue: we're building a rather large application (win32, Delphi 6 Enterprise). In several part of the application, modal windows are used, usually containing the detail of the ...
6
votes
8answers
1k views

What's the difference between public and published class members in Delphi?

Please could someone explain me what's the difference between public and published class members in Delphi? I tried to look at Delphi help and I understand that these members have the same ...
6
votes
4answers
968 views

Delphi - Is there any equivalent to C# lock?

I'm writing a multi-threaded application in Delphi and need to use something to protect shared resources. In C# I'd use the "lock" keyword: private someMethod() { lock(mySharedObj) { ...
5
votes
4answers
952 views

Free memory and nil in Delphi using a single function

I have a lot of memory allocations and the same number of FreeMem calls. What I didn't have though is a check before calling freemem to see if the pointer was nil, and a line after freeing to set the ...
5
votes
4answers
796 views

What is the difference between compiling and building in Delphi?

With Delphi-6 there are two options: Build and Compile. I know when I run a program it compiles only the files which have changed and uses the DCUs for those which haven't. When I click build ...
5
votes
3answers
303 views

Delphi 6 - Bugs disappear when I compile multiple times

My Delphi installation has been going downhill for the past few months. It seems though that every so often when I build a release it has strange errors in it which are resolved if I build, then ...
4
votes
1answer
405 views

Rave Reports with Delphi 2010

We are trying to migrate Delphi 6 to Delphi 2010 with Rave Reports. Delphi 6 was using TReportPrinter to print the results. We don't have that Rave component in Delphi 2010. Could you please guide ...
4
votes
2answers
372 views

Importing .net dll to Delphi 6 loses information

I have a .net dll which I could import to Delphi 6. But it loses some information. I have a demo application in VB.net to use this dll which shows 2 interfaces called IRedeemTransactionItemBundle and ...
4
votes
5answers
749 views

Delphi - What happens with un-freed (but terminated) thread when application exits?

I have multithreaded application and I've got a little problem when application ends: I can correctly terminate the thread by calling TThread.Terminate method in Form1.OnDestroy event handler, but the ...
3
votes
1answer
97 views

How can I stop Chromium from creating a “WebViewHost” host window when launching the user's default web browser?

I am using the Chromium web browser control in my Delphi 6 application. Whenever the user clicks on a web link in the web page currently being displayed that is not on my primary web site I launch ...
3
votes
1answer
92 views

DLL Breakpoints not being hit solved with “remote debug symbols” option, why and any security risks with those?

I had a big problem with breakpoints not being hit in a Delphi 6 DirectShow DLL. I would load the DLL (AX) in the IDE and run it with Graph Edit as the Host program and none of the breakpoints would ...
3
votes
1answer
175 views

Transparent group box

I have inherited from TGroupBox of the Delphi native control and overriden its Paint method to draw rounded rectangle. procedure TclTransparentGroupBox.CreateParams(var params : TCreateParams); ...
3
votes
2answers
160 views

Delphi 6: How can I change created filedate (= file creation date)

I've been searching now for HOURS on Google (and here). And I cannot find a solution. I want to CHANGE the "Created Filetime" (= creation filetime) in DELPHI 6. Not the "Modified file time" (for ...
3
votes
1answer
199 views

How to exclude DBGrid.Column.FieldName in .pot file

I made an application with Delphi 6. After that I extracted a .pot file with all the strings to translate. The problem is that there are strings that don't have to be tranlated, and if translated will ...
3
votes
2answers
166 views

How to stop a Delphi 6 COM server application re-registering with COM at startup

I have a set of legacy Delphi 6 aplications that are out of process COM servers. In attempting to run these programs as a normal domain user on Windows I see them when running up (without any command ...
3
votes
2answers
370 views

How to migrate from Delphi6 to Delphi2010 (Unicode Problem)

Hi I was using the Francois Piette's RasDial with Delphi 6, but it stopped working in Delphi 2010 How can I keep using these functions like before? class function Encryption.DecriptPasswd(strPasswd: ...
3
votes
1answer
606 views

Installing component in dclusr.dpk breakes other components

First I've installed RX library 2.75 and some others. Then I'm trying to install custom (not mine) component TMyLookupEdit which is derived from TRxLookupEdit. I do it thru main menu -> Component -> ...
3
votes
5answers
450 views

How can I find all MP3 files in a directory?

I recently started with delphi and now I want to get all mp3 files from a directory. I want something like the php function glob().
3
votes
4answers
599 views

How do I implement Internet accessible system with Delphi?

I am about to start working on a new system which will need to support multiple users and potentially allow the database to be accessed over the Internet. The system will be win32, not web based, the ...
3
votes
1answer
299 views

Code Syntax Highlighting in Delphi 6 (to highlight syntax and ifdef blocks)

Delphi 6 is pretty old, I know. Unfortunately there are reasons why I can't upgrade which I don't want to get into here. My problem is that it's hard to read code. I have the Castalia plugin ...
3
votes
1answer
351 views

Reading a unicode string from SQL Server with Delphi 6

I need to read a nvarchar(max) field from a SQL Server 2008 database using Delphi 6 and ADO. I can handle the unicode text just fine but it seems the ADO component is "preconverting" the string to ...
2
votes
0answers
129 views

TWebrowser abort?

Delphi 6 I've got code that loads a Webbrowser control (TEmbeddedWB) via a local HTML file. It works fine for the most part, and has for quite a few years and 1000's of users. But there's a ...
2
votes
0answers
83 views

Is this Delphi 6 code for using a page file backed shared memory mapped file correct?

I have a Delphi 6 application and also a DLL that share a memory mapped file to transfer data between them. I know soft page faults are a normal side effect of memory mapped files, but I am getting a ...
2
votes
1answer
154 views

Fast access to a (sorted) TList

My project (running on Delphi 6!) requires a list of memory allocations (TMemoryAllocation) which I store within an object that also holds the information about the size of the allocation (FSize) and ...
2
votes
1answer
290 views

Converting TurboPower Lockbox 2 to LockBox 3

I am currently in the process of converting a project (that uses encryption) from Delphi 6 to XE. This project uses the old Delphi Encryption Compendium which does not work in XE. So I figured that I ...
2
votes
3answers
166 views

Is there a way to auto-assign a dynamically created component's event handlers in Delphi 6?

I have a design and run-time component that contains a large number of event handlers. I'll call it TNewComp for now. I create an instance of TNewComp on a TForm and fill in the event stubs with ...
2
votes
1answer
183 views

Only One field shown from SQL

I have a problem trying to get fields from a SQL statement that retuns 2 fields If I run the query in phpMyAdmin, it returns all the fields correctly. That means SQL statement is correct If I run ...
2
votes
2answers
269 views

Const function in Delphi

In the Delphi code I am looking at I've found the following set of lines: const function1: function(const S: String): String = SomeVariable1; function2: function(const S: String): String = ...
2
votes
2answers
200 views

Delphi - Running code without showing form

What do you think about this programming practice: - I need to execute one transaction at first form and after that to force some updates that are placed at another form (for each item that is shown ...
2
votes
3answers
334 views

Hooking a DLL function in Delphi

I have a coclass which checks the registry to determine if an application is installed, but it does this poorly and doesn't find newer versions of the application. In cases where a competing ...
2
votes
1answer
403 views

What happened to Application.handle in Delphi XE?

I'm porting some code to Delphi XE and noticed that if I use Application.Handle to get the handle of the program, Delphi throws me an error and refuses to compile, saying: Undeclared identifier: ...
2
votes
1answer
252 views

How to change Delphi 6 soap agent 1.1 to Soap agent 1.2?

I am using Delphi 6 to develop a web service client. The service provider insists to use soap 1.2 . But when I checked THttpRio component in my Delphi 6 , I could see the soap agent is 1.1. How can I ...
2
votes
5answers
665 views

Delphi - Cross-thread event handling

I have a small client-server application, where server sends some messages to the client using named pipes. The client has two threads - main GUI thread and one "receiving thread", that keeps ...
1
vote
1answer
89 views

How do I get screen coordinates of the DBGrid cell

I want to show popup button or fancy message (with coloured background, etc) just under right-bottom corner of particular cell of the current row. For now I only figured how to get grid coordinates: ...
1
vote
3answers
97 views

How to speed up sluggish tooltip symbol and expression evaluation in Delphi 6 IDE?

A project I have been working on for several years apparently has gotten so large that the tooltip evaluation of symbols and expressions when in design mode is very sluggish. Despite having a quad ...
1
vote
2answers
164 views

How do I export the TChart to the bitmap?

I'm using TeeChart Pro v7.06 of Steema Software and Delphi 6. In my project there are TChart (whose BottomAxis.Automatic = False) and TChartScrollBar (to scroll). In TChart there are several series ...
1
vote
2answers
83 views

Is Continue in Delphi 6?

I'm getting an error when I'm trying to replace a GoTo in a while loop with a Continue, but whenever I do I get an error reading "Statement expected, but expression of type 'Boolean' found". Is ...
1
vote
1answer
454 views

I'd like to make a websocket handshake with delphi6

I'm trying to build a websocket server on Delphi6 using the draft hixie-76 and i have a problem with the handshake. The md5 fingerprint i get with the three parts does not seem to be correct when i ...
1
vote
3answers
591 views

Wsdl soap header is missing in the imported interface in Delphi 6

I am trying to implement a webservice using Delphi 6. Web service uses soap version 1.2 and my delphi has a soap agent of 1.1. When I tried to import the wsdl, soap header "Autenticacao" is missing in ...
1
vote
2answers
921 views

Borland socket server, what is that? [closed]

This is not question about programming, but I think maybe I'll get some answers here. Probably some of you did work with this and you can tell me more about it. So, on a client we need to install ...
1
vote
1answer
247 views

Problems with Bitbtn in Delphi 6 under Windows vista

I've been working for a long time under Windows XP with Delphi 6 (and under Win2k before). As I've recently bought a new laptop, I had to start using Windows Vista. I've installed Delphi 6. Whenever ...
1
vote
2answers
160 views

Delphi textfile empty

I recently started to programm in delphi. Now, I've got an exercice. I have to save a top score in a text file. I've got this function: {Voeg topscore toe aan het goede bestand.} function ...
1
vote
2answers
641 views

“specific to a platform” warning in Delphi 6 on Windows 7

We have some legacy code that compiles in Delphi 6. There are plans to rewrite it in a more current IDE, but they are a ways out. When we compile it we get several warnings like this: FPrecision is ...
1
vote
1answer
415 views

Delphi TChart using AddNullXY and trend function

I have TeeChart version 7.07. I have a chart with a FastLineSeries with 400 datapoints (x is date and y is used%). the first 200 are valid dates with actual measured % values. the next 200 are valid ...

1 2