Questions tagged [delphi-10-seattle]

Delphi 10 Seattle is a specific version of Delphi released in August 2015

Delphi 10.0 Seattle supports development of applications covering Windows 32-bit and 64-bit, 32-bit, 32-bit and 64-bit, and 32-bit. Windows applications may be built using either the framework or the (FMX) framework, whereas the rest of the supported platforms are built under the Firemonkey framework only.

Always use the tag alongside this tag.

626 questions
0
votes
0 answers

Delphi 10. Debugger notification. Execution error

Unfortunately, I did not understand the Delphi settings. I have a runtime error (wrong file name for reading data), but the problem is that I only see the error message in debugger mode. If I run the program without a debugger, then the program just…
0
votes
1 answer

GDI+ draws internal lines in a polygon path

I am trying to paint a following polygon: with this code: procedure TForm1.Paint; var g: TGPGraphics; pen: TGPPen; i: Integer; p: TGPGraphicsPath; m: TGPMatrix; br: TGpSolidBrush; begin inherited; g :=…
Paul
  • 25,812
  • 38
  • 124
  • 247
0
votes
1 answer

How to activate/force Basic Auth on THTTPClient

I can't find an option to activate Basic Auth on THTTPClient. My main "issue" is that the first request response with a HTTP/1.1 401 Unauthorized and it triggers an auth event. I want to do it on the first "try". Here is my code: uses …
0
votes
2 answers

How to find the source of a big memory consumption in a Delphi application?

I am experiencing a non normal memory consumption from my application written in Delphi 10 Seattle. It is a client server fat client type of application using SDAC's Devart as DB component. I am not aware of specific tools, but I would like to know…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
0
votes
3 answers

Parse an array of strings in JSON

In Delphi 10 Seattle, I am trying to parse a JSON that contains an array of strings in a property. As an example, consider this: { "name":"Joe", "age":45, "languages":["c++", "java", "cobol"] } How do I parse languages to obtain an array of…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
0
votes
0 answers

Parse large JSON File in Delphi Seattle

I am working on an old project written in Delphi. The server (Node.JS) processes requests from the client (Delphi Seattle) and returns the data from the database as JSON text. There's no problem in getting data on the client side, as soon as I want…
0
votes
1 answer

On entering in a TEdit, it is doubling the text inside of itself

I am using Embarcadero® RAD Studio 10 Seattle Version 23.0.20618.2753. I just started making a Mobile App. I placed two TEdit controls on one TForm. They are Edit_FirstName: TEdit; Edit_LastName: TEdit; Now, when I am running this app on a mobile…
0
votes
2 answers

Building projects in Delphi 10 Seattle on windows 7 - do they work in windows 10?

Is windows 10 backwards compatible for exe files built by delphi 10 in windows7? My attempts to provoke crashes in windows 10 have all failed, but i cant find any documentation to back up my theory, can anyone help?
Gerdes88
  • 25
  • 4
0
votes
0 answers

On enter how to stop adding new row in TMSFMXEdit?

I'm using TMSFMX tools to develop mobile app where TMSFMXEdit tool is by default multi-line means on enter new row gets generated in it and I don't want to allow user to add new row on enter or on pest. I want to keep it single row only. Can…
0
votes
1 answer

How to give name to column and fill data in row in Tgrid created at runtime; (Delphi)

I am new to Delphi Firemonkey using Embarcadero® RAD Studio 10 Seattle. I create at runtime a Tgrid. How can i give name to column and fill data in row ? My code is below. procedure TForm1.Button1Click(Sender: TObject); var Grid : TGrid; begin …
0
votes
1 answer

How to create Tgrid at runtime

I am new to Delphi creating runtime Tgrid and want to add some rows and columns. I googled but not getting any thing. i am at level zero. what i have tried i mentioned it below.This code is showing nothing on my form. procedure…
0
votes
0 answers

Is what seems to be a LiveBindings quirk still present in recent Delphi versions, e.g. Rio?

Below is a minimal FMX LiveBindings project written & compiled with Delphi Seattle which (I hope!) shows a long-standing issue with LiveBindings which goes back to the first time I attempted to use them in the XE4 era. I've included the code and a…
MartynA
  • 30,454
  • 4
  • 32
  • 73
0
votes
1 answer

Sending TMemoryStream as mail attachment

I am exporting a FastReport as PDFFile using TfrxPDFExport. I made a function that returns me a PDF as IStream: Function TPDFReport.GetAsFile (): IStream; var MStream: TMemoryStream; Begin MStream := TMemoryStream.Create; try With…
0
votes
0 answers

Updated Indy - Getting error related to IPPeerClient and IPPeerServer

I've been practicing updating Indy on a VM and I've gotten far enough to compile some of my projects but not all. First of all I'm Delphi Seattle, updated to Indy 10.6.2 following the instructions here In my client projects that use Indy, there is…
FLDelphi
  • 508
  • 7
  • 20
0
votes
2 answers

FireDac TFDBatchMoveTextReader not bringing in the full field value

I have a CSV file I would like to import with the FireDAC BatchMove family of components (TextReader and DataSetWriter). Sample CSV Data Vehicle,State,Toll distance (mi),Distance (mi),Time…
FLDelphi
  • 508
  • 7
  • 20