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
Best practices
0 votes
3 replies
126 views

The title says it, but here is an example: try // ... raise EFileNotFoundException.Create('File not found!'); except on E: EFileNotFoundException do begin E.Message := Format('"%s":...
T0mmiTheGreat's user avatar
-1 votes
0 answers
58 views

I get this log continuously (every render frame): E/TransactionCallbackInvoker: [SurfaceView(...)(BLAST)] writeReleaseFence failed. error 32 (Broken pipe) It comes from the system (SurfaceFlinger), ...
zeus's user avatar
  • 13.3k
Advice
1 vote
3 replies
140 views

So I'm uploading around 50MB into a longblob in a local mysql server. Using LoadFromStream, setting the param value is near-instantaneous but the execution of the UPDATE statement takes around 2 ...
oui's user avatar
  • 113
2 votes
1 answer
166 views

When trying the following code it will not compile as I receive this error: Type parameter 'T' is not compatible with type TBase I want this type constraint to support the Save method being typed to ...
Richard Shuck's user avatar
1 vote
1 answer
112 views

I have compiled my application using the Debug configuration and placed the resulting EXE in another folder. Now, I would like to debug it using Attach to Process. The application runs, but I can only ...
vico's user avatar
  • 18.5k
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
0 votes
0 answers
68 views

When I try to install JEDI (JCL & JVCL) with the Install.bat I get the error: This version of the product does not support command line compiling. So I have to install it manually, because as we ...
José's user avatar
  • 31
0 votes
1 answer
81 views

I used this method to draw squares and triangles on the paint box: procedure squarClick(Sender: TObject); begin  canvas.Pen.Color := clgreen;  canvas.Pen.Style := psSolid;  canvas.Pen.Width :...
Ebrahim's user avatar
  • 25
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
1 answer
166 views

Short Version How can i select all text in a TEdit when the control gains input focus from the user clicking the edit box? Motiviation Following the Windows User Design Guidelines for a "search&...
Ian Boyd's user avatar
  • 259k
0 votes
0 answers
122 views

I'm using SQL Server 2017 and ADO components with Delphi, creating an FMX application for Windows. In the DataModule, I've added a TADOConnection and some TADOTable and TADOQuery components. In the ...
Gordon Turner's user avatar
0 votes
1 answer
195 views

I have started using the horse web framework for building an API in Delphi. The VCL sample mentions the following as a comment in the Main.Form.pas file: // Need to set "HORSE_VCL" ...
user31362432's user avatar
0 votes
2 answers
190 views

I have drawn a graduated ellipse on my form using the paint box. The only problem is that I have used Moveto and LineTo many times to grade the ellipse. procedure PaintBox1Paint(Sender: TObject); ...
Ebrahim's user avatar
  • 25
1 vote
1 answer
186 views

The program I am using has a small section for programming which is almost similar to the Delphi programming language. In the components section, there is no timer and I want to create it myself. {$...
Ebrahim's user avatar
  • 25
0 votes
2 answers
117 views

Why I cannot return to normal "Windows" Style? TStyleManager.SetStyle() causes Access Violation in TStyleHook.SetRedraw when called 2nd time procedure EnableDarkMode(dark:boolean; Handle: ...
Tom's user avatar
  • 6,771
4 votes
2 answers
190 views

I have a web app written in Delphi 12 using TMS Webcore components. At logout (which happens by user action, or after idle timeout), I want to clear the memory for security reasons, in case there are ...
Rohit Gupta's user avatar
  • 4,277
2 votes
3 answers
139 views

When I open my Delphi IDE I see the loading screen like this: Is there a way to change that background image to something else and custom? I want it made cool and customized with my own photo instead ...
user31362432's user avatar
3 votes
3 answers
136 views

I just upgraded one of my projects from an old version of Delphi to the latest Delphi 13. When I run the project within the Delphi IDE it works, but when I move the EXE to my client's computer it ...
user31362432's user avatar
0 votes
1 answer
114 views

Heyllo. I just upgraded my project to Delphi 13 and latest DevExpress, but now I'm getting this new error in one of my frames: [dcc64 Fatal Error] frameAdmin.pas(8): F1026 File not found: '...
user31362432's user avatar
1 vote
0 answers
87 views

I'm working with Delphi 13, building an Android-exclusive app using FireMonkey. With a new feature we want to add, we are looking into creating a custom WebView, as the version Delphi exposes in ...
Morten Nissen's user avatar
4 votes
1 answer
192 views

In my Delphi 2009 VCL application, I have several base forms, like: TListBaseForm = class(TForm) TEditableListBaseFrom = class(TForm) TEditBaseForm = class(TForm) Each of these base forms is using ...
TomR's user avatar
  • 3,364
1 vote
0 answers
117 views

I have this record with managed fields: type POverlappedContext = ^TOverlappedContext; TOverlappedContext = record HttpApiCookieStrings: TArray<AnsiString>; // managed ...
zeus's user avatar
  • 13.3k
0 votes
0 answers
67 views

When running VTune in Performance analysis mode, it goes without issue. When selecting Hotspots however, the launch fails with the error code 0xc0000142, which apparently is a dll loading issue. This ...
oui's user avatar
  • 113
2 votes
1 answer
165 views

I have a VCL app written in Delphi 12.3. It displays a dialog over a form. The dialog may be displayed as the result of a toolbar speedbutton click, or from a menu selection; if called from the ...
Steve Sneed's user avatar

1
2 3 4 5
1052