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

How capture the active url based in a substring without repetition?

I want capture the url of active window based in a substring and add to Memo only if sActiveURL is different of sOldURL. The trouble in my code is that always is added to Memo the same url ignoring the verification if sActiveURL <> sOldURL. How fix…
user9210291
0
votes
1 answer

How to set two properties as a node and change the caption in design mode?

I'm trying to create a new component named CheckEdit as the following: unit UnitName; interface uses System.Classes, Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.Controls; type TCheckEdit = class (TCustomControl) private FCheckBox : TCheckBox; …
Ilyes
  • 14,640
  • 4
  • 29
  • 55
0
votes
1 answer

H2161 Duplicate resource [Can a VCL project have 2 forms with the same class name but different namespaces?]

I tried creating 2 forms with the same class name in 2 different namespaces FirstNameSpace.ExampleFormName.TExampleFormName SecondNameSpace.ExampleFormName.TExampleFormName although this compiles, I get the following hint [dcc32 Hint] H2161…
jeff w
  • 73
  • 2
  • 7
0
votes
1 answer

Issue with taskbar icon on delphi seattle

I have a two delphi VCL applications running on my desktop and one of them is behaving weirdly. This particular application's taskbar icon doesn't switch to the second monitor's taskbar when I move the application to the second monitor and the other…
0
votes
1 answer

Delphi Android: After adding service to app icons and splashscreen images disappears

I've got a massive error. When I add to project new local service - my main app dosent lunch. This errors I got: [PAClient Error] Error: E2312 Unable to execute…
0
votes
0 answers

IPv6 equivalent of scanning subnet?

I have a piece of code which scans 256 IPv4 addresses within user's network, checks each one for a particular TCP port and checks if it is a server which it can connect to. The concept is fairly simple... type TIPAddressV4 = record IP1: Byte; …
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
0
votes
1 answer

How works the OnMouseDown event on my MainForm with Firemokey?

I am using Tmainform.OnKeyDown and it fires always correctly, besides the controls or frames added to the form. I need the same behavior for OnMouseDown. My goal is to track activity of the user. After x minutes with no keyboard nor mouse clicks I…
Eduardo Elias
  • 1,742
  • 1
  • 22
  • 49
0
votes
0 answers

list out of bounds(108) error in delphi 10 seattle new component wizard

When I try to use the new components wizard, I get the error "list out of bounds(108)" when the list of basic components is about to be loaded. I get out of this error normally by restarting the IDE and all is well, how ever this time it is not the…
Nasreddine Galfout
  • 2,550
  • 2
  • 18
  • 36
0
votes
1 answer

FormCreate procedure

I have two units in my project as follow: 1 - Connexion unit: unit Connexion; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,…
Ilyes
  • 14,640
  • 4
  • 29
  • 55
0
votes
1 answer

Incompatible types: 'TCloseEvent' and 'Procedure'

Here is my code : unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls; type TForm1 = class(TForm) Button1:…
Ilyes
  • 14,640
  • 4
  • 29
  • 55
0
votes
0 answers

TIdTCPClient and SSL raise exceptions

I am using TIdTCPClient with SSL. After awhile of connecting, I get these exceptions in the debugger, and the client is disconnected: Project project1.exe raised exception class EIdOSSLUnderlyingCryptoError with message 'error:14086081:SSL…
madam mar
  • 73
  • 3
  • 13
0
votes
1 answer

Deleting an FMXobject inside its event handler

I have the following components, tncrdragdata (tframedscrollbox) tdragdata (tgroupbox) The main Idea is to combine them and use them as a list box (I need it this way). The groupbox contains five tedit, one tcombobox and one tbutton. The problem is…
Nasreddine Galfout
  • 2,550
  • 2
  • 18
  • 36
0
votes
1 answer

Write error in stream and nothing shown in the TImage conrol

I'm writing a simple app to load images and save it to a Blob field in a database , and retrieve the image again when needed. Here is my code : unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,…
Ilyes
  • 14,640
  • 4
  • 29
  • 55
0
votes
2 answers

E2045 Bad object file Format:"XXX.obj"

I am working on one migration project from x32 bit to x64. Here I am using this code: {$L com_1.obj} {$L com_is1.obj} {$L com_2.obj} But while compiling code I am getting error as [dcc64 Error] XXX.dpr(919): E2045 Bad object file format:…
A B
  • 1,461
  • 2
  • 19
  • 54
0
votes
1 answer

Why does `Explicit(array of T)` receive garbage in Delphi 10?

I'm using Delphi 10 Seattle. When I compile this unit (it's just a blank vcl project with a button which has Button1Click registered) it compiles and runs but the data is not as expected. The function Explicit (which overrides the explicit cast)…
Claude Martin
  • 745
  • 6
  • 21