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
1 answer

Chromium Embedded: TCefDomVisitorOwn.visit() method never is executed

I'm using CEF4Delphi and trying get a determinated html input element of a page to after set a value to the same using the code below, but happens that the method TElementNameVisitor.visit(const document: ICefDomDocument); never is executed. How i…
user9672569
0
votes
1 answer

Is it correct to consider Delphi's Format() function as an alternative to wsprintf()?

I want to know if it is correct to consider Delphi's Format() function to be an alternative to wsprintf()? I want to produce the same output as this: wsprintf( nameFile, "%s_%d_%08x.pfx", nameStore, c_certs, GetTickCount()); Reference In Delphi,…
user9672569
0
votes
1 answer

How export all my certificates of software separately to a .pfx file?

I want export programatically of a computer all my certificates of software separately to .pfx file to sign 2 new softwares that already are in final step of building in another pc. To make this i found a C++ code example (that after i translate to…
user9672569
0
votes
1 answer

Crash only when calling third party DLL

I have to use this third party DLL that communicates with a specific hardware (Brazilian tax control related hardware). The functions exposed in this DLL are standardized by the government and implement by hardware vendors. Our software already…
Ricardo Acras
  • 35,784
  • 16
  • 71
  • 112
0
votes
1 answer

Delphi Firemonkey/FMX - Get TImage to fill out a TRoundRect

Probably pretty simple but I was trying to figure out how to get an Image to fill a TRoundRect in Delphi FMX. I've got a roundrect on my form, got an image assigned to it but when I load a rectangle shaped bitmap into the image it displays in its…
0
votes
1 answer

How to smartly add a line of code in all the FormCreate events without editing all forms?

I need the call an Initialization routine in all the forms of my application, it is an Intraweb application so in fact I will use OnIWAppFormCreate and not OnFormCreate, anyway the problem is the same. I have 2 techniques in mind: Use Visual Form…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
0
votes
0 answers

how do i prevent minimize application from minimizing all forms?

I have an application with three forms. The main form is created automatically and the others are created manually at runtime. I need to minimaze the main form if the user clicks on minimize but do not minimize all other forms. Is it something I…
madam mar
  • 73
  • 3
  • 13
0
votes
2 answers

Delphi Seattle - Sending Post Request with custom body Responds bad Request 400

I would like to send a Post Request to a Rest Server of external Provider. I Have tried with Curl and everything works perfect. Here is the CURL Code: curl -X POST -H 'PRODUCT-KEY: SUperL0ngAndSpecialSecretCode' -H 'Content-Type:…
fisi-pjm
  • 378
  • 2
  • 16
0
votes
1 answer

How "crop" a area behind of a screen locker Form on Windows 8/10 without locker Form appear on final result?

I have a Remote Administration Tool where i have difficulties to "crop" a determinated area behind a screen locker Form on Windows 8/10 without locker Form appear on final result ( that in my case is a image file (.bmp) that will be showed to…
user9672569
0
votes
1 answer

Delphi - Firemonkey Write Out Text to TRectangle

still pretty new to Firemonkey. Got a component I'm adding to a form which descends from TRectangle. Once i've drawn it out, I want to add text into it but I'm really struggling to find anywhere which documents how to do this. Can anyone suggest…
0
votes
0 answers

IdHTTP.Get(url, ss) give 403 Forbidden

I'm using IdHTTP to execute php files on server. Worked fine for years. Suddenly getting 403 Forbidden errors with all my programs. Archived versions from year ago now fail also. Web host says they have changed nothing. To test, placed a simple…
0
votes
0 answers

how to use TDataset.AfterPost to log all changes to data?

I would like to log all the changes posted in a dataset Post event by looping through the changes in tdataset.afterpost event. I use dataaware controls and i would like to store the changes done by a user. My goal is to do it for all datasets in my…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
0
votes
1 answer

Comparing DBgrid and ClientDataSet field names

How to compare field names of clientdataset and dbgrid? For example check every field as visible in clientdataset if it exists in dgbrid?
Ledzouz
  • 59
  • 8
0
votes
0 answers

TDownloadURL "Error downloading URL" Delphi

I've done things others recommended to get TDownloadURL working. I finally boiled it all down to a form with a TButton, a TEdit, and a TMemo. Click the button to download the URL and display in the TMemo. I get an error message: Error Downloading…
0
votes
0 answers

Delphi - Reading Nested JSON

I have a REST call that is working properly. I can pass parameters, it returns data. The app uses TRESTClient, TRESTResponse, TRESTRequest, TRESTAdapter, feeding into TClientDataSet and TDataSource. The end result is that when the JSON data comes…
user1009073
  • 3,160
  • 7
  • 40
  • 82