Delphi 6 is a specific version of Delphi. It was released in May 2001. Use this tag for issues related to development in Delphi, version 6.

learn more… | top users | synonyms

0
votes
1answer
60 views

Calling COM Object inside TThread

In order to test the performance of the application, receiving many requests at the same time, I created an application that, inside threads, opens a connection using the TDCOMConnection creates a ...
2
votes
1answer
92 views

Aquire Singleton class Instance Multithread

To get the instance of the class with Singleton pattern, I want use the following function: This is a sketch interface uses SyncObjs; type TMCriticalSection = class(TCriticalSection) private ...
0
votes
0answers
22 views

Delphi write to textfile crashing intermittently

I have a program doing massive amounts of calculations in very long loops on a separate thread. To step though this code is going to take forever. For instance in my current problem I am interested in ...
-2
votes
1answer
56 views

Delphi 6 cursor not changing

If I have a ButtonClick event which sets Cursor := crHourglass, Application.ProcessMessages, then use a TOpenDialog to choose a file, and then do something CPU-intensive, the cursor behaves ...
-2
votes
3answers
87 views

Creating/Using FileStream Thread Safe

In my Application when I write text files (logs, traces, etc), I use TFileStream class. There are cases that I write the data in multithreaded environment, those are the steps: 1- Write Cache Data ...
3
votes
3answers
123 views

How to set multiple array fields at once without using a for loop in pascal?

I am learning Pascal and currently stuck with a problem concerning array manipulation. I have come across a method of setting arrays, that I have seen in other languges, but I do not know how to do ...
3
votes
1answer
91 views

TStringList behavior with non ANSI files

In my application, when I want import a file, i use TStringList. But, when someone export data from Excel, the file encoding is UCS-2 Little Endian, and TStringList can't read the data. There is any ...
0
votes
1answer
90 views

Form moving to the back and staying active

I have a largish Delphi 6 app that I have ported to Delphi XE3. At one point the main form launches another non-modal form. Sometimes (say 50%) after a second or two the newly created form moves ...
0
votes
1answer
123 views

Use DLL to program events in Delphi

I am wondering a situation during the program execution when the user (beginner programers ones) could implements under an event notification, for example: TNotifySomething : procedure (const param: ...
2
votes
2answers
113 views

TADOQuery Prepared

The TADOQuery component has "prepared" property the manual says that when prepared is set TRUE, the ADO 'prepares' the commmand, what this means?? Here is the manual explanation: Set Prepared ...
0
votes
1answer
104 views

Working with threads with DCOM

I have a conceptual question about multithreading: In a application using RPC through DCOM, with multithread appartment configuration, the main form is freezing. 1 - If the CriticalSession is ...
4
votes
1answer
214 views

Need to Identify the Database name in an ODBC DSN connected application

I have a Delphi 6 application that uses an ODBC DSN to connect to target databases. I want to include text that lists the name of the Database the DSN is connected to. I tried using the SQL command ...
1
vote
1answer
170 views

High resolution exe icon results in a low resolution icon on Windows desktop shortcut

I had a Delphi 6 application with a 16x16 icon. Recently I made the 64x64 version of it and recompiled the application. This high-resolution icon is displayed on Windows 7 Superbar and in task ...
1
vote
1answer
125 views

How may i make global cache thread safe

My application used to be mono thread, but now to increase performance we need to make it multithread. We have Lists and ListItems in the following architecture: TBListItem = ...
6
votes
3answers
351 views

Do I need to finalize array of records in Delphi?

In my application I have the following record: TTransaction = record Alias: string Description: string Creation: TDateTime Count: Integer end; and I'm using this record in this array: ...
0
votes
3answers
325 views

How to encode base64 in Delphi 6? [duplicate]

I need to encode a pdf document to base64 in Delphi6. Can anyone help me?
0
votes
0answers
157 views

Delphi application defined exception [closed]

I am encountering the follow error: Project C:------ faulted with message:'application-defined exception(Code 0x0eedfade) at 0x7730c41f. Process stopped. Use setp or run to continue. Now this is in ...
0
votes
1answer
436 views

Make a ODBC connection from a delphi-7 application throu ADOConnectionstring

Background : Application written in Delphi-7 or -6 (have search through the .exe file). Called Sigmanest. I have moved to new server and that's left is SigmaNest database running under SQL server. ...
4
votes
2answers
657 views

Handling of Unicode Characters using Delphi 6

I have a polling application developed in Delphi 6. It reads a file, parse the file according to specification, performs validation and uploads into database (SQL Server 2008 Express Edition) We had ...
2
votes
1answer
91 views

Find infinite loop in delphi 6

The program I currently have has multiple components compiled as dll's. In one of these dll's the program forms an infinite loop. Is there someway to see where the program loops? Even where it is ...
4
votes
1answer
273 views

How to encrypt credentials while connecting to FTP using Indy?

Recently I noticed in WireShark I could see my FTP username/password that I used for connection to my FTP Server to upload a file (Delphi 6 with Indy 9 or 10, I belive). I would like to prevent that ...
3
votes
4answers
975 views

Convert hex str to decimal value in delphi

I've got a problem to convert a string representation of an hex value in integer value with Delphi. for example: $FC75B6A9D025CB16 give me 802829546 when i use the function: ...
1
vote
2answers
473 views

How can I resize any kind of image?

The goal of my project is to resize any kind of image (jpeg/gif/png) in Delphi 6. I have tried many ways but I could not get the ideal solution. Any clue of how to do that? It can be a simple command ...
3
votes
3answers
448 views

Compiling projects with DCC32 as in Delphi 6 professional IDE

IDE: Delphi 6 Professional. We have big projects. I cannot use Project Groups to build them all, because I got OM errors, and strange file errors when I did it. My idea was that I will use ...
1
vote
1answer
535 views

Delphi command line build (DCC32) error: System.pas not found

Delphi 6 Professional in Win7/x64, with c:\Delphi6 folder. Because the ProjectGroups are making OM errors, we need to build the projects one by one. To provide faster compilation I tried to use ...
4
votes
1answer
158 views

Why does assigning a NIL array to a Variant cause a non-empty array to be returned in Delphi 6?

Consider the code below which compiles and runs without error in Delphi 6. When I recover the dynamic string array, instead of seeing an empty array in sa, I see an array with a length of 1 with a ...
1
vote
3answers
253 views

Using C++ DLL in Delphi 6

I have to use an encoding function from an external C++ DLL in Delphi 6. Following is the declaration provided : long <Function Name> (char *Data, long &Apply, char *ReturnVal, long ...
0
votes
0answers
56 views

Is there any way to preview report in current form instead of in a separate window?

When we call a Preview method for Quick Report [Delphi6], report is open in new Window. Is there any way to Preview Report in Current Form?
3
votes
1answer
289 views

How to finalize record passed through the untyped parameter of a function?

Can I pass "any" record type to my procedure ? Many times I used "records" with strings. type TR = record a: string; b: string; end; To clear them, I need to write: Finalize(R); ...
6
votes
0answers
452 views

Recent Failures on Delphi TADOStoredProc / D6 and RAD Studio XE2

Thanks to any that can provide some assistance... Background: I have an application coded and still supported in Borland Delphi v6. Very recently I have had issues with the TADOStoredProc class ...
6
votes
0answers
492 views

Interacting with a coin changer using COM port [closed]

I have a coin changer MEI Cashflow E7900 and an MDB adapter to connect the device to a serial port. The shop which sold me the adapter also provided a test application, which is written in Delphi, ...
1
vote
1answer
457 views

Replacing StretchDIBits with GDI+ (while drawing an Image to Printer's canvas)

My application is developed in Delphi 6. This is a resource intesive application due to background processing and large volume of data (It consumes around 60MB - 120MB of physical memory). One of the ...
1
vote
1answer
476 views

how to make a transparent form inside Panel?

I need to create at runtime a partial transparent Form inside a Panel. How might I be able to achieve this?
1
vote
0answers
245 views

Chromium and Silverlight (Delphi)?

Has anyone ever tried integrating Silverlight with Chromium? If so, do you know of a document listing the steps to make it work? I'm using Delphi 6 and the TChromium component.
2
votes
1answer
2k views

How to get elements by name in Delphi Chromium Embedded?

To get a particular DOM node embedded in the current web document from a TChromium instance, using its ID, you use ICefDomDocument.getElementById(). But how do you find elements by the NAME ...
0
votes
0answers
173 views

Is there an way to pass a widestring to a TStringStream?

I have this Delphi function: function DevuelveResumenEventos(cnnBBDD : TADOConnection;sFecha,sHora,sCtrlPac : string) : TStream; var sTextoArmado : string; stCarga : TStringStream; begin ...
0
votes
1answer
251 views

how to get all the classes in an application

I am writing a localization application in which i am reading the DFM information from the application resource through EnumResourceNames API call. However, the function returns me a name of the form ...
2
votes
2answers
269 views

Network Communication - Some Information does not reach the Server

I have a little problem with a program I'm writing at the moment. First let me explain what it should achieve. It is very similar to a chat-program, so it basicially has an information-class (I ...
3
votes
2answers
656 views

Other causes for EConvertError with StrToFloat() in Delphi 6 application?

I'm having a strange problem that is affecting at least some of my international users of my Delphi 6 application. Here's the scenario: My program requests status reports periodically from an ...
2
votes
1answer
292 views

ShowModal on onAccept of TTCPServer causes the application to hang?

I'm programing one network application in delphi 6 using TTCPServer. At OnAccept event of this component I call showmodal for another form. This cause to hang the main form. I think that it is because ...
1
vote
0answers
186 views

How to trap unhandled Delphi 6 Exceptions from within the context of a modal form?

I recently had a problem with a modal form disappearing (a wizard) at odd times. After a lengthy debugging session, it turns out that it was due to an unhandled Exception in a piece of code that was ...
1
vote
1answer
182 views

An Acrobat PDF file must see in a thumbnail-like image [duplicate]

Possible Duplicate: PDF thumbnails in Delphi I'm developing in Delphi 6 an application to show some Adobe Acrobat files BEFORE send to the Acrobat Viewer, just like a thumbnail. Can you ...
0
votes
1answer
524 views

How to save a PDF file in a SQL Server column using Delphi code

G'd day, everyone... Here is the scenario. My user wants to save a PDF file into the database (yeah, I know, that's not the optimal way to do it, but ... he pays, so I keep my mouth shut ;) ), so I ...
1
vote
3answers
880 views

Delphi stack overflow due to a cycle in event handling

I am working on the application which has two listboxes.I load the two listboxes with values and when i keep on clicking the items from the list box i get the following error while debugging. ...
0
votes
1answer
178 views

Turn off context menu for Component applied by CnPack (design time)

After I installed cnPack, right clicking on a component in my form seems to have taken away any specific items that the component itself may have applied. eg, right clicking on any Dev Express ...
2
votes
2answers
388 views

Save and restore event handlers

My class contains dataset (TDataSet). Users of my class can assign event handlers for this dataset: ds.FieldByName('ID').OnChange := @ID_OnChange; Then I have to reopen dataset: ds.Close; ...
1
vote
4answers
440 views

C# and Delphi integration

Currently we have couple projects that are written in Delphi 6. Because of specific components that use in these projects (components also written in Delphi 6) it is not easy to convert it in newer ...
3
votes
1answer
1k 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: ...
0
votes
1answer
54 views

Copy contents of a routine to another location in memory

I want to copy the routine code in memory to another location. For e.g. procedure OldShowMessage; begin ShowMessage('Old message..'); end; Say i want to copy the routine to another location in ...
4
votes
1answer
692 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 ...

1 2 3