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

-1
votes
0answers
17 views

Run time error 216 at 00431073 [closed]

i installed a software that it's name is tanida demo builder v9 it is a program for capturing your desktop & make interactive multimedia content ... recently i face a annoying problem with it... ...
3
votes
1answer
72 views

Programmatical log in by providing credentials

Consider windows users A (with administrative rights) and B (restricted access rights). Also a data folder located on the server to which only user A has the access to. The challenge I’m facing is to ...
0
votes
1answer
93 views

Get Returning Clause' Output in Delphi

Previously I asked a Question, I got the right answer. It is working fine in PL/SQL Window. But when I want to do the same thing to achieve through my Delphi Code, I am not able to achieve the same. ...
0
votes
1answer
90 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
105 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
56 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
78 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
129 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
135 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
125 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
103 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
136 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
135 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
126 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
295 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
204 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
134 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
550 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
537 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
175 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
552 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
791 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
103 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
364 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
1k 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
553 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
508 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
621 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
167 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
272 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
59 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
312 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); ...
8
votes
0answers
535 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
525 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
490 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
491 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
249 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
176 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
257 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
275 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
718 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
323 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
189 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
187 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
546 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
935 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
182 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
417 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
466 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 ...

1 2 3