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

what happens to an SDL2 texture when the renderer changes?

The renderer changes when the window changes. As in a simple resize of the window. That's my assumption. I can be wrong. I am asking this not about textures in general, but more specifically about textures which were created with two different…
Raith
  • 851
  • 4
  • 12
  • 25
0
votes
1 answer

Determine which dataset is blocking a firedac connection

I have a single threaded Firedac (SQL Server) application that is sometimes producing the error below. Connection is busy with results for another hstmt. This error mostly happens on queries that are run on a timer (TTimer). Is there a way of…
Tom Robertson
  • 151
  • 10
0
votes
0 answers

Datasnap method name

Is there a way to remove the T type from method name in datasnap? http://localhost/datasnap/rest/TSales/CustomerLookup/ Id like to change TSales to just Sales but it descends from TComponent and forces the T type
Anthony
  • 73
  • 10
0
votes
1 answer

Rollback Sqlite database in Firemonkey Multi device project

How can I rollback my SQLite database after doing a few queries on my iOS/Android device within a Delphi 10 firemonkey multi device project? I create my database queries using TFDQuery.
Remi
  • 1,289
  • 1
  • 18
  • 52
0
votes
1 answer

Error using SQLite ATTACH - DETACH in Delphi

I experience a, for me unsolvable, problem with ATTACH and DETACH in SQLite, using Delphi (Firedac). I have one database file connected and attach a second one with: FDConnection1.ExecSQL('ATTACH DATABASE "' + Import_DB_filename + '" AS…
JGMS
  • 77
  • 10
0
votes
4 answers

How to get device email address in Delphi 10

I'm trying to get my device email address, I used Java2OP to convert AccountManager class to object pascal. However, I tried to get the email address using the following code: jAm: JAccountManager; accounts: TJavaObjectArray; jAcc:…
ColdZer0
  • 233
  • 1
  • 4
  • 19
0
votes
2 answers

Firemonkey how to add longTap gesture to runtime made ListBoxItems

I'm using Delphi 10 Seattle to build a multi device project with firemonkey. My project has a ListBox, and I fill it runtime with ListBoxItems. I want to add the LongTap gesture to the ListBoxItems. I have already tried this: gestureManager :=…
Remi
  • 1,289
  • 1
  • 18
  • 52
0
votes
1 answer

Is an exponential scale of an axis with TDBChart possible?

Is it possible to have an exponential scale of an axis with TDBChart (instead of a logarithmic scale)? A logarithmic scale of the y-axis is useful, when the graph corresponds to an exponential growth. As the following example shows, the y-axis…
DRASIT
  • 13
  • 3
0
votes
2 answers

EObjectiveC with message 'ObjectiveC class Captuvo could not be found' Delphi Seattle iOS Simulator

I am trying to achieve integration with the Captuvo SDK ( https://www.honeywellaidc.com/HoneywelliOS/developer-resources.html ) , however happens the following error: Project dyld_sim raised exception class EObjectiveC with message 'ObjectiveC class…
Passella
  • 640
  • 1
  • 8
  • 23
0
votes
1 answer

E2037 error in Delphi 10

I was trying to compile SynEdit code. Then I got several errors related to E2037 and E2065. Here is the code. (The definition part of the code is thousands of lines long. I only pasted related lines here.) TCustomSynEdit = class(TCustomControl) …
0
votes
1 answer

delphi android service directly access (Embarcadero dokwiki)

Embarcadero dokwiki Android service I have found the next instruction on Embarcadero dokwiki site about Android services: Include the unit in the uses clause of the implementation. This allows you to use all the methos defined on the service data…
Lionking
  • 89
  • 1
  • 13
0
votes
1 answer

Compile Error in Delphi 10 Seattle on creating any new Android Service other than Local Service

Steps to create error in Delphi 10 Seattle. Working: Create Blank Multi Device Application. Save to "Dir1" set to target Android. Add New Project to "ProjectGroup1", Android Service, Local Service. Click "Save All" put service in Dir2 with…
FerretDriver
  • 381
  • 4
  • 11
0
votes
1 answer

Hide DropShadow from Hints

In my application i want to use hints to show additional information. It looks like this: I noticed that Firefox shows hints without the dropshadow: My research on google only brought me to questions about adding a dropshadow (XP days) and not…
Tommy
  • 596
  • 6
  • 30
0
votes
0 answers

Delphi LocationSensor how can I switch off from host app?

I use Delphi 10 Seattle Update 1 and I start the LocationSensor from android service. I use the following code: procedure TAndroidServiceDM.StartLocationSensor; var FSensors: TSensorArray; Sensor: TCustomSensor; begin …
Lionking
  • 89
  • 1
  • 13
0
votes
1 answer

Error When Using MS Access StrConv Function

Introduction I have a form with a TComboBox that I want to populate with a field from a table in my database using a query. I also want the values in the field displayed in proper case, which can be achieved using Access’ StrConv function. Here’s my…