Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

I’m trying to implement this iOS delegate method in Delphi: - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task willBeginDelayedRequest:(NSURLRequest *)request ...
zeus's user avatar
  • 13.3k
-1 votes
0 answers
65 views

I have a real cross-platform app that is also used on Ubuntu Linux (vanilla). Since users were upgraded to 25.10, the app freezes unpredictably. Sometimes, even it was running in the background ...
Mockminister's user avatar
1 vote
1 answer
122 views

I've tried doing: GridRawData.ColumnCount := 0; GridRawData.RowCount := 0; But that fails with: E2129 Cannot assign to a read-only property I've also tried doing: GridRawData.Columns.Clear; ...
user31362432's user avatar
1 vote
1 answer
139 views

I've built the following Chart that shows temperatures. It shows the lowest and highest temperatures for each day: The issue I have is that there are two axis on the left and bottom. I want there to ...
user31362432's user avatar
1 vote
0 answers
131 views

I'm developing a cross-platform Delphi app using the FireMonkey (FMX) framework, and I need to optimize its layout and behavior when running on Android devices that support desktop-like environments, ...
user31362432's user avatar
1 vote
1 answer
141 views

I have a follow up question to one of my previous questions. I have switched over to using Skia4Delphi in my applications, but the properties are very different. I was using TLabel and setting the ...
liansa111's user avatar
1 vote
2 answers
117 views

I have an app on Steam, and normally when I want to know what operating system I am using, then I use TOSVersion.Name from System.SysUtils. And that works except when I run it through Steam Proton on ...
Shaun Roselt's user avatar
  • 4,361
0 votes
0 answers
130 views

I have a project that requires me to convert a web app into an Android application. My solution was that instead of recreating the app from scratch, I proposed making a Delphi FireMonkey Android ...
Zakaria Mimeche's user avatar
-1 votes
1 answer
115 views

In VCL, I could simply call the ColorToString function from System.UIConsts, but this function is VCL only because it uses TColor: function ColorToString(Color: TColor): string; begin Result := ...
Shaun Roselt's user avatar
  • 4,361
0 votes
1 answer
109 views

I added Skia to my project, then I removed Skia from my project and now my app won't compile anymore. this is the error i am getting: Required local file"\Binary\Android\Release\libisk4d.so"...
user31362432's user avatar
1 vote
1 answer
78 views

I have made a drawing on an FMX TPaintBox and I want to remove/delete the drawing from the TPaintBox when I click on a button, but how? I have tried things like this to set the canvas to empty, but it'...
user31362432's user avatar
2 votes
0 answers
98 views

I have the next code that works and compiled. The app runs with no errors, but the IDE shows a red stripe and hover popup: E1030 Invalid compiler directive: 'private' on code: type TForm1 = class(...
user31362432's user avatar
1 vote
2 answers
162 views

I have a TPaintBox component on my form and I want to draw a smile emoji on it and I don't know how to draw this. I have been able to draw lines and circles but it does not look accurately like actual ...
user31362432's user avatar
2 votes
2 answers
227 views

Application description: I am working on a project that is similar to Wallpaper Engine (Steam) that lets you play a video as a desktop wallpaper on Windows, but I ran into a problem that I couldn't ...
Zakaria Mimeche's user avatar
0 votes
1 answer
175 views

I always kind of thought/assumed there would be a crNone option under the Cursor property on components. But when browsing through the Cursor list in the object inspector, I don't see a crNone option. ...
Shaun Roselt's user avatar
  • 4,361
2 votes
2 answers
134 views

I'm making a game in Delphi with FireMonkey and I'm trying to make a button with rounded corners using a TRectangle. It is the play button in the photo below: Is this possible? How can it be done? I'...
liansa111's user avatar
0 votes
0 answers
128 views

Scenario: In a new FMX project (no StyleBook), I have two layouts: Layout1 and Layout2. Inside Layout1, there's a TButton with a TShadowEffect attached. At runtime, I move Layout1 into Layout2 like ...
Daniel Vieira Daniel's user avatar
0 votes
1 answer
76 views

I have a simple TStringGrid on my form. One would expect that you can simply change the Font Size in the object inspector for the header here: But that doesn't seem to work at all. No matter what ...
Shaun Roselt's user avatar
  • 4,361
1 vote
0 answers
84 views

Hello for all kind people! I just starting into mobile development in Delphi. Early I used to use VS. I encountered a problem with mobile deployment to my device. When I open SDK manager I see next ...
t232006's user avatar
  • 21
0 votes
1 answer
60 views

I have a c++ builder project in Rad Studio 12.3 to display scrolling text (left to right) on a TViewPort3D. I managed to do this by simply taking only the number of characters that fit in the area ...
Barry Andrews's user avatar
1 vote
1 answer
89 views

Trying to get (and eventually set) the paper selection at runtime using Delphi FireMonkey for MacOS. I've substituted what I think are the correct variables and functions into a routine that I have ...
user2580203's user avatar
0 votes
0 answers
133 views

In Delphi FireMonkey, I would like to create a custom control that descends from TCustomControl (not from TFrame or TForm) and have the ability to visually edit it at design time in its own FMX file — ...
zeus's user avatar
  • 13.3k
1 vote
1 answer
252 views

I want the circle to move on the Form in X-direction. This works quite good with the following Delphi code in FMX.Graphics: procedure TForm1.ButtonMoveFormClick(Sender: TObject); var MyRect: TRectF; ...
Valeriy's user avatar
  • 11
0 votes
0 answers
38 views

To print from windows 10 in FMX TWebbrowser i use WebBrowser1.EvaluateJavaScript('window.print()') this JavaScript directly show print dialog. How to show print preview before opening print dialog? ...
Hosein Zakeri's user avatar
1 vote
0 answers
83 views

I'm developing a macOS application using Delphi and deploying it via PAServer. After the build process completes and I deploy my app for the Mac App Store, I noticed that the final *.app bundle (and ...
zeus's user avatar
  • 13.3k

1
2 3 4 5
80