Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
112 views

We have implementation that uses OnCustomDrawItemEvent of treeview to draw items. NodeRect := Node.DisplayRect(true); TextRect(NodeRect,NodeRect.Left, NodeRect.Top, sometext); The issue is that some ...
danisius's user avatar
  • 609
2 votes
1 answer
341 views

I'm trying to extract a large number of files stored in a BLOB column in a SQL Server database. The files are being saved correctly to a directory, but after processing approximately 30,000 files, the ...
Stefan van Roosmalen's user avatar
1 vote
1 answer
108 views

Can I, and if yes, then how, copy a Linux SDK from a Delphi installation on one PC to a Delphi installation on another PC? My situation is this: I have a local installation of Delphi (12.3), on which ...
Matthias B's user avatar
  • 1,249
1 vote
0 answers
84 views

Hello for all kind people! I just starting into mobile development in Delphi. Early I used to use VS. I encountered a problem with mobile deployment to my device. When I open SDK manager I see next ...
t232006's user avatar
  • 21
0 votes
1 answer
136 views

I have written a program to search for errors (according to a pattern) in the text. The error search is done programmatically from the text in SynEdit with the subsequent display of errors in ...
Gin's user avatar
  • 21
0 votes
1 answer
162 views

TlistView (and TJvlistView) - Subitems line in 255 characters. Is there a way to get around this restriction? Dynamically I fill in the SubItems of 670 characters, but the line turns out only 255 ...
Gin's user avatar
  • 21
0 votes
1 answer
143 views

When using Delphi, I was looking for the Timer component on the palette (VCL application). Accidentally, I pressed a button or I clicked something (I didn't notice what I did), and after what seemed ...
Gustavo Fonseca's user avatar
2 votes
1 answer
126 views

I have a follow-up question to this question (How to play MIDI in Delphi) and a previous question of mine (How to play chords using MIDI?). Regarding MidiOutOpen and MidiOutClose, what is meant by the ...
new-to-so's user avatar
1 vote
1 answer
134 views

I am building a small REST server, which will be deployed to about 2 dozen people, and provide some data on an internal network. I have the GET request setup and can return JSON of the data that I am ...
jetblackrogue's user avatar
1 vote
1 answer
217 views

I just bought TMS FNC Charts and I'm trying to install it onto Delphi 12 Community Edition, but I'm having some issues. Delphi 12 Community Edition wasn't an option in the installer, so I had to go ...
mark w's user avatar
  • 21
0 votes
0 answers
215 views

I'm using Delphi 12.2 and have recently started encountering the internal compiler error "F2084 Internal Error: URW1394". This happens when I compile a project using Ctrl+F9 or run it with ...
Volker Siebert's user avatar
3 votes
1 answer
150 views

I’m implementing subscription functionality in my mobile app using Google Play Billing and TInAppPurchase in Delphi. I’ve encountered an issue that I hope someone here might have already faced and ...
Taras's user avatar
  • 85
0 votes
0 answers
216 views

I've got a Delphi app with a relational Postgres DB. The problem I have is say we have a customer called Jon's Store. Whenever I try to query on that customer I get the error: Syntax error at or near ...
Error In Code's user avatar
6 votes
1 answer
171 views

I want a procedure that does something like this: procedure RecordStringToLower(var MyRecord); begin // 1. Loop through all fields // 2. Find string fields // 3. Convert all string fields to ...
Shaun Roselt's user avatar
  • 4,361
6 votes
1 answer
224 views

Given this declaration: type TRec = record FNr: integer; FName: string; constructor Create(ANr: integer); end; and this implementation of the constructor: constructor TRec.Create(ANr: ...
Anders G's user avatar
1 vote
1 answer
148 views

I'm trying to do a POST request in Delphi, using the Indy TIdHTTP component. The target host requires a certificate and key files. Testing the requests with Postman or Insomnia, it works fine, returns ...
NatanG.G's user avatar
0 votes
0 answers
94 views

I'm updating a build server, that builds our Delphi application for Linux using dcclinux64.exe, command-line parameters and also info from a dcclinux64.cfg file. It works with Delphi 10.4 and Ubuntu ...
Matthias B's user avatar
  • 1,249
0 votes
1 answer
98 views

I am working with TVirtualStringTree, and I would like to display a 'delete' icon when the user hovers over a specific node or the node is selected. Example in VSCode Explorer View: Is GetImageIndex ...
Mattia72's user avatar
  • 1,349
1 vote
1 answer
89 views

Trying to get (and eventually set) the paper selection at runtime using Delphi FireMonkey for MacOS. I've substituted what I think are the correct variables and functions into a routine that I have ...
user2580203's user avatar
1 vote
2 answers
145 views

Suddenly we faced the following problem that the allocation of the multidimensional array consumes more memory than it is required for the array itself. Minimal code to reproduce: type TConfig1 = ...
Z.B.'s user avatar
  • 1,235
2 votes
1 answer
266 views

I downloaded the latest Interbase from here https://altd.embarcadero.com/download/interbase/2020/latest/InterBase_2020_Windows.zip and used the trial version. Upon installation, either as 32-bit or as ...
awakanto's user avatar
0 votes
0 answers
124 views

In Delphi XE2, I'm using a TAdvStringGrid to print a simple report. Prior to submitting the job, I execute a TPrintDialog to select the target printer, but regardless of which printer I select in the ...
Steve Sneed's user avatar
0 votes
0 answers
120 views

In a Delphi (v11) VCL program, I'm trying to create a multi-page PDF file from individual TIFF pages stored in a folder. I have included the Synopse PDF (SynPDF) library (in Uses SynPdf, SynCommons). ...
Hackbrew's user avatar
  • 523
0 votes
1 answer
206 views

I'm writing a little POC console IBLite application for Windows, using Delphi and the FireDAC components Here is a code that works without error: lDACConnection := TFDConnection.Create(nil); ...
Didier Cabalé's user avatar
1 vote
1 answer
252 views

I want the circle to move on the Form in X-direction. This works quite good with the following Delphi code in FMX.Graphics: procedure TForm1.ButtonMoveFormClick(Sender: TObject); var MyRect: TRectF; ...
Valeriy's user avatar
  • 11