Questions tagged [delphi-10.3-rio]

Delphi 10.3 Rio is a specific version of Delphi released in November 2018.

Delphi 10.3 Rio supports development of applications covering 32-bit and 64-bit, 32-bit, 32-bit and 64-bit, 32-bit, and server 64-bit. Windows applications may be built using either the framework or the (FMX) framework, whereas the OSX and mobile platforms are built under the FireMonkey framework only.

This version of Delphi brings several enhancements to the core Delphi pascal language, including inline variable declarations and type inference, as well as RTL performance improvements, and changes to Delphi's ABIs for better C++ interoperability across all platforms. It also sports several IDE UI redesigns, better High-DPI support to the VCL, support for iOS 12 and Android API level 26+, and begins Embarcadero's push to phase out its ARC memory management model for TObject classes, starting with the Linux 64-bit compiler.

Always use the tag alongside this tag.

References

546 questions
-3
votes
1 answer

Transform a string to an object pointer?

I have a string 'MyButton'. How can I get the OBJECT MyButton from the STRING 'MyButton', so that I could write: MyButton.Caption := 'My new Caption'; This would change the caption of the TButton MyButton object instance.
user1580348
  • 5,721
  • 4
  • 43
  • 105
-3
votes
1 answer

Sending an object instance to a DLL for processing?

I have created a DLL in Delphi 10.3.3 and compiled it (as 32-bit): library TestDLL; uses Vcl.ExtCtrls, Vcl.Graphics, System.SysUtils, System.Classes; {$R *.res} procedure ColorPanel(APanel: TPanel); begin APanel.Color :=…
user1580348
  • 5,721
  • 4
  • 43
  • 105
-3
votes
1 answer

Send file over socket: SendText() and SendStream() not sending data correctly

I try send a .jpg file from ClientSocket to ServerSocket but have a trouble apparently around of SendText and SendStream functions because the results obtained after execution of SendText for example is always 0. But exists other strange thing that…
-3
votes
2 answers

Issue with ZipForge and Delphi Rio 10.3

I'm try to install ZipForge component for Delphi 10.2 Tokyo (ComponentAce doesn't have official version for this component for Delphi Rio 10.3) into Delphi 10.3 Rio for tests, but until this moment, unsucessful. I did the installation by many ways :…
-4
votes
2 answers

How to detect whether a TWinControl has a FONT property?

I need to change the FONT property of controls collected via the Controls property of a container control: for i := 0 to ContainerControl.ControlCount - 1 do begin ContainerControl.Controls[i].Font.Size := 8; // error end; For this, I would…
user1580348
  • 5,721
  • 4
  • 43
  • 105
-5
votes
4 answers

DELPHI - Extra semi-colons in except blocks, any purpose? Optional semi-colon before except or end, What's better with or without?

Working in a Delphi 10.3.3 application with a ton of extra & missing semi-colons. The app compiles if they are dropped prior to any block ending statement. Does a floating semi-colon between [except] and [end] serve any purpose in the code, such as…
Joseph Poirier
  • 386
  • 2
  • 17
1 2 3
36
37