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

Writing all instances of strings between two other strings to logfile

After looking at Delphi extract string between to 2 tags and trying the code given there by Andreas Rejbrand I realized that I needed a version that wouldn't stop after one tag - my goal is to write all the values that occur between two strings in…
-1
votes
1 answer

Compatibility on Bit Manipulation between C# and Delphi when handling files

I'm doing a bit manipulating routine to encode/decode mp3 files. However, I will need to encode them using C#, and decode them using Delphi XE 10. I wrote the code that encodes/decodes them, and it works when executed on the same platform (if I…
Pascal
  • 2,944
  • 7
  • 49
  • 78
-1
votes
1 answer

GET Value from restresponse Json

Any way to retrieve url key from this JSON? { "data": { "is_silhouette": false, "url":…
-1
votes
1 answer

How can I get a property of an component to stay nil?

I have an component on my form (a TPushEvents). I've explicitly removed the value from one of it properties (Provider). I've saved and checked it into source control. I can see that the property is indeed removed from fmx file. Here's what the entry…
BIBD
  • 15,107
  • 25
  • 85
  • 137
-1
votes
1 answer

Open Google Play store from my android app to install the latest version written in Delphi

When necessary I whould like to show an app upgrade reminder screen. App upgrade reminder screen has 2 options "update now" or "ignore". I'm using XE10 Seattle. Requirement is Update Now should open play store app with my app already searched on…
Gianluca Colombo
  • 717
  • 17
  • 38
-1
votes
2 answers

using TextFile in Delphi Android

In my Delphi 10 Seattle app, I am reading a text file (actually an ini file) using TextFile as below: SDPath := ClientUtils.GetSharedPath; FileName := TPath.Combine(SDPath, 'Client.ini'); if not MemoVisible then begin …
Freddie Bell
  • 2,186
  • 24
  • 43
-1
votes
1 answer

Display size and format

In my VCL form application I have added: Button OpenDialog Edit ListView When I open a file with opendialog, how do i display the file size and format in ListView column? Here is the code which am trying - please correct my mistake, or what…
meitei
  • 27
  • 4
-1
votes
1 answer

Context sensitive help on compiler messages no longer works in Delphi Seattle

I have just installed Delphi Seattle Upgrade 1. f1 or ctrlf1 no longer work when I'm on a compiler warning/error. I just get No help found for DCC32. This used to work in my previous XE2 version. Anything I can/should do to fix this? Note: This is…
Jan Doggen
  • 8,799
  • 13
  • 70
  • 144
-1
votes
1 answer

How to fire notification using TimeEdit

im trying to fire a notification in specific time using TimeEdit, it didnt work! the code i used.. try MyNot.Name := Edit1.Text; MyNot.AlertBody := Edit2.Text; MyNot.FireDate := Now +…
ColdZer0
  • 233
  • 1
  • 4
  • 19
-1
votes
1 answer

Using OmniXML implementation in Delphi 10 Seattle

I'm trying to understand using OmniXML in our application which is going to be written in Delphi 10 Seatlle. I've scavenged the internet but all I can find are samples which obviously use another version of Delphi and/or another version of OmniXML…
Bascy
  • 2,017
  • 1
  • 21
  • 46
-1
votes
2 answers

How can I send a Push Notification through Parse.Com using Delphi?

I need to send a Push notification out through Parse.com's API using Delphi. I see there is a TParseApi but the documentation is, as usual, rather sparse on the subject. How can I do this?
BIBD
  • 15,107
  • 25
  • 85
  • 137
-1
votes
1 answer

TShape and Integer Value

I'm recently working on an Dart-Counter. I have a Dartboard presented on a TImage and for every counting position there is a TShape. Is it possible to assigne a value to a TShape, because the TShape does not like integer? Thanks.
Fallout98
  • 1
  • 2
-1
votes
1 answer

TIdHTTP.Get very slow with HTTPS URLs

Put a TIdHTTP component and a TIdSSLIOHandlerSocketOpenSSL component on a VCL form. Do not assign anything to IdHTTP1.IOHandler property. Then get the HTML from a HTTP URL, for example: sHTML := IdHTTP1.Get('http://www.pixar.com'); • This is very…
user1580348
  • 5,721
  • 4
  • 43
  • 105
-2
votes
1 answer

How draw a rectangle/hole in a "Form3" using coordinates of a PaintBox present in "Form2"?

I have a "Form2" that have a ScrollBox and a PaintBox. Also exists another Form called "Form3" (also with a PaintBox inside) that have the ScrollBox of "Form2" as your parent. Then i need draw a rectangle => hole over "Form3" based on coordinates of…
user10752826
-2
votes
3 answers

Is there anyway to use the property like behavior?

I have the following formula X := X + F*(1-i div n); Where X, F, i, n: integer; The code I'm using is this F := 7; // the initial speed with no friction. n := 10; // the animation number of steps. Hn := n * 2 ; X := 0; // first Pos i := 1; J…
Nasreddine Galfout
  • 2,550
  • 2
  • 18
  • 36