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
0
votes
0 answers

How to force Delphi's TADOConnection use ansistring for Command?

I have problem with encoding when I insert into dbf file through ADO. Connecting string: 'Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties="dBASE IV";Data Source='+extractfilepath(ParamStr(0))+';'+ 'User ID=Admin;Password=' In a insert…
Jacek U
  • 53
  • 9
0
votes
1 answer

White image when resizing Tbitmap

This code is supposed to resize a TBitmap, but the resulting bitmap is just a white image (with the final size). I'm using it to resize to a lower size. function ResizeBitmap(B: TBitmap; Width, Height: Integer): TBitmap; var finalbitmap:…
Bazi
  • 37
  • 4
0
votes
0 answers

Changing Delphi 10 auto generated files (identcache, dof, cfg...)

Is there a way to change the path that those files are generated? By default it's generated in the same folder as the .dproj file. I would like to change: .cfg .dof .identcache .res .stat .dproj.local and if possible, but a little different, the…
Rodolfo Donã Hosp
  • 1,037
  • 1
  • 11
  • 23
0
votes
0 answers

Delphi Android app gives me a copy of the image from the gallery. How do I get the original?

Trying to get an image from Gallery - it works fine, but I get the recompressed copy instead. I'm using following simple code to get the image from the gallery on Android: procedure TakePhotoFromGallery; begin FParams.RequiredResolution :=…
Kromster
  • 7,181
  • 7
  • 63
  • 111
0
votes
1 answer

Error in call to overridden ShowModal while showing modal

I'm working with a modal form that is shown as Full Screen. I manage to do that by overriding the virtual ShowModal() method. function TfrmComptoir.ShowModal: Integer; begin FullScreen := ReadFromIni('Config.ini', Self.Name, 'FullScreen', False); …
S.FATEH
  • 451
  • 8
  • 16
0
votes
1 answer

How to read JPG EXIF data in Android app written with Delphi?

I need to take a picture with Android app (either from Camera or from Gallery) and check its EXIF date-time (and a couple other properties). I have successfully implemented recieving of the JPG image and loading it into TStream and GUI Image…
Kromster
  • 7,181
  • 7
  • 63
  • 111
0
votes
0 answers

How to get rid of blue color when a row is selected in TStringGrid?

I am trying to learn drawing a StringGrid in Delphi. Here is my StringGrid: But the problem is when I select a row blue areas appear like shown in the image even I did not set color to blue. I want to make selected row fully orange and get rid of…
user10825637
0
votes
0 answers

How can I show Text in multi-colour in Firemonkey

I need to show text in multi-colours, rather like highlighting portions of say xml or json. A "Richedit" or "Html" component would work. I cant find any native ones, how can I do it ?
Rohit Gupta
  • 4,022
  • 20
  • 31
  • 41
0
votes
1 answer

Doubling component on "Standard" palette page

Recently I've installed the new Embarcadero Delphi 10.3 Rio, and noticed that some components on the Standard toolbar page are being doubled. Particularly, the doubled components are TMainMenu, TActionList and others. These components live in…
Spectorsky
  • 608
  • 4
  • 23
0
votes
1 answer

How to disconnect from MQTT server when using SGC WebSockets?

I need to connect to MQTT server, get some messages, then reconnect (disconnect and connect again). I'm using sgcWebSockets v4.2.1 and official connect code: // Create websocket client and set server options oClient :=…
Kromster
  • 7,181
  • 7
  • 63
  • 111
0
votes
0 answers

Errors with inline record variable declaration

Getting access violation errors if I use an inline declared record variable to build a dynamic record array. Does not happen all the time but switching back to a normal declaration for the record variable I haven't seen the error. I wonder if this…
Brian
  • 6,717
  • 2
  • 23
  • 31
0
votes
1 answer

How to get a windows 10 style transparent border

I've been experimenting to see if I can get the same effect with a custom control with no luck. The issue is, I'm wanting to make a resizable panel like component derived from Tcustomcontrol. I can create a single pixel border with WS_BORDER and…
Andy k
  • 1,056
  • 1
  • 11
  • 22
0
votes
0 answers

Screen orientation problem with TChart in "Delphi 10.3 Rio"

I started working with "Delphi 10.3 Rio" and i'm looking at what seems to be a bug related to the TChart object. In an FMX application for "Android 8" I have just created a window with a single object, the TChart (Chart1.Align :=…
wBB
  • 821
  • 1
  • 18
  • 39
0
votes
0 answers

Delphi XE (Firemonkey) problem when updating more image on runtime (android)

I cam creating an app for Android with Delphi XE 10.3, Firemonkey. I have tried every possible idea and searched online for days but can't find a solution. I have many PNG images loaded as assets (RT_RCDATA). var InStream:…
Madaeon
  • 1
  • 1
-1
votes
1 answer

How capture continuos frames from camera?

I'm using the following code to capture the camera: unit Webcam; interface uses Windows, Messages, SysUtils, Graphics, ExtCtrls, Classes, VFW {https://drkb.ru/multimedia/audio/extract_track/ed7dcb6994c641e4}; type TCamera = class(TObject) …
FLASHCODER
  • 1
  • 7
  • 24