-
Content Count
425 -
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
117 ExcellentTechnical Information
-
Delphi-Version
Delphi 11 Alexandria
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Lockbox 3 GenerateKeys = Range Check Error
Cristian Peța replied to softtouch's topic in General Help
- b8_1 := P8^ shl ShiftAmnt; + b8_1 := Byte(P8^ shl ShiftAmnt); //(3 shl 7) do not fit into Byte - b8_1 := P8^ shl ShiftComp8; + b8_1 := Byte(P8^ shl ShiftComp8); - PoweredFactor, Power, iFactor: integer; + PoweredFactor, Power, iFactor: uint32; After some changes in /run/utilities/uTPLb_HugeCardinal.pas no more errors... but it works? If it worked with range checking OFF then probably it will work. -
Maybe using SameValue(number, 0.965, 0.001)? Or if you need all the precision the test binary.
-
Delphi 12.2 - TSQLConnection required DLL of SSL ?
Cristian Peța replied to Mauro Botta's topic in Network, Cloud and Web
DataSnap uses Indy and Indy does not work with Windows SChannel. A solution would be to statically link OpenSSL library into executable like it was done for Android. -
It was a fast forward for us. There was many disruptions. For some electricity companies it was impossible to use it at beginning because it was incompatible with what our energy regulatory authority asked.
-
This is from an invoice B2C: <Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"> <cbc:UBLVersionID>2.1</cbc:UBLVersionID> <cbc:CustomizationID>urn:cen.eu:en16931:2017#compliant#urn:efactura.mfinante.ro:CIUS-RO:1.0.1</cbc:CustomizationID>
-
In Romania B2C is mandatory. It's working already.
-
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?