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

Delphi Application internationalization and localization

I had read documentation about localizing Embarcadero DocWiki. But I do not know how to: change language in Run-Time - for example I would to click in application menu change language to English or Polish Show translated text in dialogs, e.g:…
-2
votes
1 answer

How to convert TSQLTimeStamp to TDateTime

I have a table in SQL Server 2008 like this: CREATE TABLE B_INTERVENTION ( ID_BI INT IDENTITY PRIMARY KEY NOT NULL , Date_Creation DATE NOT NULL , Cree_Par INT NOT NULL , D_Arr BIT NOT NULL , Obj_Demarrage DATE NOT NULL , Obj_Fin DATE NOT NULL…
Ilyes
  • 14,640
  • 4
  • 29
  • 55
-2
votes
2 answers

is trim in delphi can be bypassed?

i am trying to check if a string is empty by doing the following if trim(somestring) = '' then begin //that an empty string end i am doing this empty check in my client application , but i notice that some clients inserts empty strings even with…
Vlark.Lopin
  • 762
  • 10
  • 21
-2
votes
2 answers

TShellListView create new folder & rename it

Im working on a project in Delphi , I have TShellListView component (List) ,and Button to create New folder : MkDir(List.RootFolder.PathName+'\New Folder'); List.Update; But what I need is when the user create the new folder, then then the folder…
Ilyes
  • 14,640
  • 4
  • 29
  • 55
-2
votes
1 answer

Delphi- working with ADSI- how to retrieve all group members

I`m working with Active Directory service interfaces and trying to retrieve all users out of a group. I have this line of code which brings me the group itself: var Group:IADSGroup; begin …
itay312
  • 1,518
  • 4
  • 24
  • 36
-2
votes
1 answer

How to prevent my threads from exiting before their work is done?

I have 10 threads working together. After starting the threads, 15 seconds later all threads exit before the job done, and only one thread remains. My code: procedure TForm1.Button2Click(Sender: TObject); begin AA; BB; CC; DD; EE; FF; …
Thunderx
  • 169
  • 1
  • 9
-2
votes
1 answer

Cannot create Folder using System.SYSUTILS.ForceDirectories

More and more users complain that they cannot install/start my application. What is the problem: Using System.SYSUTILS.ForceDirectories(...) a directory structure is built consisting of 4 directories, which do not exist in the first place. This…
rocksteady
  • 2,320
  • 5
  • 24
  • 40
-2
votes
1 answer

Firemonkey do stuff in background Form Delphi 10 Seattle

I've created a pop-up loadscreen Form that I want to show above any other form in a Firmonkey Multi device project. Now i've run into the problem that the loadscreen doesn't get updated with the things I do in the background Form. How can I solve…
Remi
  • 1,289
  • 1
  • 18
  • 52
-2
votes
1 answer

Dynamic controls gives Segmentation fault (11)

I’m working on a multiplatform project where I have to create lots of controls dynamically as a result of some major calculations. When changing the conditions, I need to remove all dynamically created controls and make the recalculations and…
TheAviator
  • 41
  • 5
-2
votes
1 answer

NAS ForceDirectories

I cannot seem to be able to call ForceDirectories() on a NAS partition on Windows 10 64-bit. I can create a folder on the NAS using Windows Explorer just fine. procedure TForm3.Button1Click(Sender: TObject); var tempDir: String; begin tempDir :=…
Seti Net
  • 693
  • 1
  • 7
  • 24
-2
votes
1 answer

OPerand mismatch converting from D6 to RS10

I took a break from porting code, and now I'm spending some more time on it again. Problem is, I guess i'm still stuck backwards in my head (everything works fine on D6 :D). Can anyone tell me why this simple code is not working? if NewSig <>…
-2
votes
1 answer

How to tell if RAD Studio 10 Seattle Update 1 has been installed?

I Uninstalled RAD Studio 10 Seattle in preparation for upgrading to Update 1. I just reinstalled RAD Studio 10 Seattle but I don't remember if I ran the Update 1 ISO or the original ISO. Is there a quick way to tell if RAD Studio 10 Seattle Update 1…
-2
votes
1 answer

Delphi 10 conversion TValueBuffer

I had a code like this in Delphi 7: var mValueBuffer : TValueBuffer; begin Double(MValueBuffer) := Date; end; When I compile this in Delphi 10 Seattle it fails with an invalid typecast error. I am using the Data.DB unit.
-2
votes
1 answer

Missing android.telephony.PhoneNumberUtils (function formatNumber) in Delphi

I need some functions from Android public class android.telephony.PhoneNumberUtils in Delphi. Specifically, it is a function formatNumber(String phoneNumber, String defaultCountryIso). Someone advise me how to solve this problem?
KJAN
  • 227
  • 4
  • 15
-3
votes
1 answer

How display a background image and center a panel in a dll Form?

I want load a image that will be the background of a maximized Form that stays in a dll. The dll is called from a Vcl Form Application but have a trouble where not is possible load the background image on Form, the dll always crashes. Thank you by…
user10702464
1 2 3
41
42