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
2 answers

Will ZlibEx work for Delphi 10 Seattle?

I am missing a ZlibEx unit in my code. Can I used the ZlibEx library from Mike Lischke's GraphicEx library? The Base2 Technologies site mentions the library is only for "Delphi 5, 6, 7, 8, 2005, 2006, 2007, 2009, 2010, xe, xe2, and xe3". Can I use…
siddharth taunk
  • 309
  • 4
  • 12
0
votes
1 answer

Why is bds.exe large address aware and dcc32.exe not? Can I patch the dcc32.exe header and it just works?

One big promise of Delphi 10 is the reduction of out of memory errors. This works because the IDE can now allocate addresses larger than 2GB and defines a special flag in the PE-Header for bds32.exe: We have an autmated build environment with…
ventiseis
  • 3,029
  • 11
  • 32
  • 49
0
votes
1 answer

(Delphi FMX) How can I refresh my Frame Object inside a TabControl.TabItem without losing control of the window?

This application is intended initially for a Windows environment. While having used only the initial code on the link mentioned below, I had to resorted to replacing the code to accept TabControls/TabItems (FMX) and not using PageControls/TabSheet…
Barry Dick
  • 161
  • 3
  • 16
0
votes
0 answers

How do i change the value of ItemHeader.Text in ListView while using LiveBinding

I've been stuck on this problem for a while now. I have a ListView that's filled via a RESTclient etc. i get categories from the server that go from 0 to 15 and i want to rename the 0 to Test. I know this is easely solvable by just changing it…
0
votes
0 answers

EVariantBadVar: Invalid Variant Type with TBytesField since upgrade to Delphi Seattle

since I upgrade from Delphi XE to Delphi Seattle I got an EVariantBadVar when I try to assign a value to a TBytesField like procedure Test.SetHash(hash : TByteDynArray); var query : TAdoQuery; a: TArray; begin query := .... query.Sql.Text :=…
Sebastian
  • 952
  • 1
  • 14
  • 41
0
votes
2 answers

How can I get firemonkey to display a local notification on iOS?

I've pulled the following code from Embarcadero site (here) to generate a local notification. procedure TForm1.SetNumberClick(Sender: TObject); var MyNotification: TNotification; begin // Create an instance of TNotification MyNotification :=…
BIBD
  • 15,107
  • 25
  • 85
  • 137
0
votes
1 answer

TSQLConnection will not open on iOS device once deployed to the App Store

After deploying my app to apple Store and testing it with "TestFlight" the app won't open an SQLConnect connection, I get an external exception (434C4E47432B2B00). But if I deploy the app directly to my devices (iPhone, iPad, simulator) the…
user734781
  • 273
  • 1
  • 9
  • 19
0
votes
1 answer

TTimer not working while iOS app in background

I have an app that needs to perform some actions based on a TTimer. When the app becomes inactive (in background), the timer stops working. I could not find any relevant options for UIBackgroundModes. How can I make a timer keeps running?
DanielH
  • 123
  • 1
  • 10
0
votes
0 answers

Has disabling TDataset.ObjectView side-effects?

Today I stumbled over the adt field types in Delphi Datasets. We use custom client datasets to bind objects to datasets in our views. With that dataset and our custom derivation of TDbGrid and enabled FastMM4 full debug mode we get an access…
ventiseis
  • 3,029
  • 11
  • 32
  • 49
0
votes
0 answers

Building project group from command line doesn't resolve project dependencies

I'm trying to build projects in project group from command line using MSBuild. After reading this page, my batch file looks like this: SET BDS=C:\Program Files (x86)\Embarcadero\Studio\17.0 SET FrameworkDir=C:\Windows\Microsoft.NET\Framework SET…
Dennis
  • 37,026
  • 10
  • 82
  • 150
0
votes
1 answer

Delphi XE10 Seattle JVCL failing install

I am unable to use the GetIt or the Manual approach to install the JVCL into Delphi XE10 Seattle. I always receive the error during package compilation that the unit 'jvInterpreter_DBTables" is not found. I see the pas file in the directory listed…
DpCroghan
  • 1
  • 1
0
votes
0 answers

What is the proper way to create TTaskBar instance at runtime?

Using Delphi 10 Seattle Update 1. I want to create an instance of TTaskBar at runtime in a VCL application. I found an interesting problem with TTaskBar: var F: TForm; B: TTaskBar; begin F := TForm.Create(Application); B :=…
Chau Chee Yang
  • 18,422
  • 16
  • 68
  • 132
0
votes
0 answers

Accessing the Primary EMail ID in Android mobile using Firemonkey/Delphi

I'm using Delphi 10 Seattle for developing mobile application. In android mobile, how can I able to get the primary E-Mail address using Delphi 10 Seattle or Delphi XE8. I have found accessing the Primary e-mail using JAVA and please provide some…
test12345
  • 367
  • 1
  • 21
0
votes
0 answers

Allowing user to change the Vcl theme of the project during run time

I am currently working on Delphi 10 Seattle and I was wondering if/how it is possible to allow a user to change the theme of the program through potentially a list box Any help would be extremely appreciated!
Weeksy
  • 23
  • 2
  • 7
0
votes
3 answers

How to autorun application with background service in Delphi?

Is there a possibility to create an android application (with background service) in Delphi 10 Seattle that will automatically start after boot android device? I found one solution (Auto start Delphi XE5 Android App after boot), but it is for the…
KJAN
  • 227
  • 4
  • 15