-
Content Count
419 -
Joined
-
Last visited
-
Days Won
5
Cristian Peța last won the day on August 15 2024
Cristian Peța had the most liked content!
Community Reputation
115 ExcellentTechnical Information
-
Delphi-Version
Delphi 11 Alexandria
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
ICS - XX: The XX field is required
Cristian Peța replied to Rolphy Reyes's topic in ICS - Internet Component Suite
How I supposed, as a field and not directly into the body. -
ICS - XX: The XX field is required
Cristian Peța replied to Rolphy Reyes's topic in ICS - Internet Component Suite
I understand from the error message that you need to send the file as a "xml" field and not directly in body. How it is working in PostMan? The XML is also in the body or you define a field named "xml" containing the file? -
Windows for ARM. There was some discussions before. See
-
https://www.fast-report.com/products/reporting-fmx
- 3 replies
-
- fast report
- delphi 12
-
(and 1 more)
Tagged with:
-
First in pas then in dfm
-
Right-click on the form and in contextual menu select "View as text" EDIT: or Alt-F12 to switch between.
-
Have you replaced in both sources? .pas and .dfm?
-
What links dynamically?
-
IBX is Crashing Application on Windows XP / Server 2003
Cristian Peța replied to MikeMon's topic in Databases
Have you tried to debug or to have a call stack using a toll like madExcept? -
Can the UI be updated in any way while the main thread is doing work ?
Cristian Peța replied to dormky's topic in VCL
To have effect you should call Application.ProcessMessages from the main thread while the work is done. This will open a can of worms but at least will work somehow. Otherwise you need to move the work in a thread. -
What does [ref] attribute actually dows
Cristian Peța replied to Tommi Prami's topic in RTL and Delphi Object Pascal
With const, if the variable is small enough to pass into a register, it will not be passed always as reference. You need to use [ref] to be sure it is passed as reference. This is the reason to use [ref] for FreeAndNil. -
In 12.2 function FindFirstFile; external kernelbase name 'FindFirstFileW'; ... function FindFirstFileW; external kernelbase name 'FindFirstFileW';
-
Check If File is what he claim to be
Cristian Peța replied to mazluta's topic in RTL and Delphi Object Pascal
If you open the file with TPNGImage it will raise an exception if the content is not PNG. Not so hard to detect it is not a PNG content. -
I think it should work with #if. Not tested. But you really want to install in that path? [Setup] #if FileExists('C:\mygame\TEST\install.exe') DefaultDirName=C:\mygame\TEST #else DefaultDirName=D:\mygame\TEST #endif
-
This is about Inno Setup? And you pascal code is not about Delphi but Inno Setup script? BTW here we are in: Home\Delphi Questions and Answers\General Help\