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

Animation while closing Form in Android using Delphi

I'm using Delphi 10 seattle for developing Android mobile application. And in that I have form and while closing that form, I need to have any animation effect. I have seen TFloatAnimation but I didn't find any help files for using it. Please help…
0
votes
1 answer

FMX.Grid.TColumn.CellControlByRow function

I tried to compile file FMXTee.Chart.Grid.pas from TeeChart 9 for XE10 that used CellControlByRow function in FMX.Grid.pas for the following code : with TColumnAccess(Columns[Col]).CellControlByRow(Row).BoundsRect.BottomRight do begin ... end; I get…
0
votes
1 answer

How to get Instagram following list using http component in Delphi 10

I'm trying to get my instagram "following" list using only http component. I've tried to use lHTTP.Get('https://www.instagram.com/Myusername/following/'); but there are no usernames in the decrypted html. However, I saw some guys using it without…
ColdZer0
  • 233
  • 1
  • 4
  • 19
0
votes
0 answers

How to block user of using program interface while waiting for a thread?

I have software that today opens up a Modal Dialog and fires a thread to execute a long calculation process. The Modal Dialog is a way to block the user of executing anything else in the program, except the Cancel button on the dialog, that will…
Eduardo Elias
  • 1,742
  • 1
  • 22
  • 49
0
votes
2 answers

TJSONUnMarshal: how to track what is actually unmarshalled

Is there another way to track what is unmarshalled than write own reverter for each field? I'm updating my local data based on json message and my problem is (simplified): I'm expecting json like { "items": [ { "id":1, "name":"foobar", …
MikaK
  • 1
  • 1
0
votes
1 answer

set TEdit.PasswordChar property in TEdit.onEnter event causes TEdit can not show selection and cursor in Delphi XE seattle

I placed a TEdit control on a form, for a password. My aim is, let the TEdit control show asterisks when it's not focused, to avoid other people seeing it, and reveal the password to allow editing when focused. To achieve this, I added OnEnter and…
shiying yu
  • 93
  • 7
0
votes
3 answers

Service install on Windows 8,10 etc

I have a problem with the installation of the service. I do it by default shortcut and a postscript or /install /uninstall depending on the need . Unfortunately, the program generates an error to stop the action . Amazingly installation work…
Toster
  • 361
  • 3
  • 17
0
votes
1 answer

Compile With Win32- Ok But With Win64- Compiler Error E2064

The following code compiles with Win32 but produces Delphi compiler error E2064 left side cannot be assigned to when compiled with Win64. type PRGB24 = ^TRGB24; TRGB24 = record B, G, R: Byte; end; PRGBArray = ^TRGBArray; TRGBArray =…
Bill
  • 2,993
  • 5
  • 37
  • 71
0
votes
2 answers

Delphi Seattle remembers past directories in the dcc command line

Delphi (XE8, Seattle and Berlin) seems to remember the invalid paths. As shown in the third picture, these paths are only valid on my old laptop, but when I copied the project to my current desktop, it shouldn't remember these, and I can't find…
justyy
  • 5,831
  • 4
  • 40
  • 73
0
votes
2 answers

How to Connect Rad Studio 10 Seattle with Nox App Player

According to this official blog post (How to connect Android Studio with Nox App Player for Android development and debug) it is possible to connect Android Studio with Nox App Player. Now I can connect Android Studio with Nox App Player but this…
ir-tech
  • 298
  • 4
  • 16
0
votes
2 answers

Sending † character instead of Space character in Char array

I've migrated my project from XE5 to 10 Seattle. I'm still using ANSII codes to communicate with devices. With my new build, Seattle IDE is sending † character instead of space char (which is #32 in Ansii code) in Char array. I need to send space…
user3537643
0
votes
0 answers

layouts VertScrollBox dont show scroll bars after adding elements dynamically

i have a blank vertscrollbox at design time. the vertscrollbox have client align into the expander3 : at run time i will add some button to vertscrollbox by this code: btnSelect := TButton.Create(VertScrollBox2); btnSelect.OnClick:=…
peiman F.
  • 1,648
  • 1
  • 19
  • 42
0
votes
2 answers

Delphi 10 Seattle options font size too big

I have started using Delphi 10. Everything is working fine except for the font which doesn't resize to the proper screen resolution. It is a screenshot of when I select from the menu bar > Tools > Options. It's the same with Menu bar > Projects >…
David Bong
  • 21
  • 2
0
votes
1 answer

Error compiling TWebChromium

{$IFDEF CHROMIUM} TWebChromium = class(TCustomWebChromium)ù at this line I have this error ... [dcc32 Warning] GMLib_D_Seattle10.dpk(59): W1033 Unit 'ceflib' implicitly imported into package 'GMLib_D_Seattle10' [dcc32 Error] …
Enrico C.
  • 1
  • 1
0
votes
1 answer

How to use Equalizer or BassBoost for TMediaplayer?

I am writing a mediaplayer app for private use in Delphi XE10 for Android. I would like to use the android equalizer but don't know really how. The JEqualizer interface is exposed in Androidapi.JNI.Media (as are other soundfx functions). I have two…