-
Content Count
392 -
Joined
-
Last visited
-
Days Won
5
Everything posted by Cristian Peța
-
Trouble with installing community edition serial number
Cristian Peța replied to berean52's topic in General Help
That serial number is not for Delphi 11 that is the current community edition? -
Delphi and "Use only memory safe languages"
Cristian Peța replied to Die Holländer's topic in General Help
Linux and Windows sources are C, C++, Assembly.... -
Then you don't know if that first char is one or two bytes. You test first byte (suppose UTF-8) and if it is not what you expected then you test first two bytes?
-
After connection is created is too late. But default is True.... https://docs.devart.com/unidac/devart.dac.tdaconnectionoptions.keepdesignconnected.htm
-
New RAD Studio 11.3 (Build 2024) posted Feb 20, 2024
Cristian Peța replied to Navid Madani's topic in Delphi IDE and APIs
Server outage and GetIT server changed. Old online installer does not work anymore. -
Maybe I am from ice age and Delphi evolved since then... but this does not compile in D11.3: E2005 'Create' is not a type identifier Calling TGUIDHelper.Create() in procedure declaration where you need to give a type is somehow strange for me.
-
aData type is terrible... is this Delphi code?
-
Can't complete installation of RAD 10.4
Cristian Peța replied to Luis Enrique's topic in General Help
Install from ISO. -
Too little details but a debug call-stack should tell us something more.
-
What new features would you like to see in Delphi 13?
Cristian Peța replied to PeterPanettone's topic in Delphi IDE and APIs
It's not a compiler problem, but record variables are not class variables and when you declare a record variable it is allocated automatically. You enter into a infinite loop of circular allocation. type TRecA = record; TRecB = record FieldA: TRecA; end; TRecA = record FieldB: TRecB; end; var a: TRecA; //infinite circular allocation of memory -
What new features would you like to see in Delphi 13?
Cristian Peța replied to PeterPanettone's topic in Delphi IDE and APIs
Yes, but imagine someone with 200% display scale with a magnifying glass trying to adjust something on a form because the form is half the size. -
[SOLVED] Delphi 12, FireDac, SQLite : capability not supported
Cristian Peța replied to weabow's topic in Databases
@weabow TFDPhysSQLiteDriverLink is in FireDAC.Phys.SQLite.pas But if you copy-paste from here it won't work because after last "k" character there are some non-visible chars: EF BB BF EF BB BF -
iOS Upgrade from Xcode 14.3.1 to XCode 15.2: Yes or No ?
Cristian Peța replied to Rollo62's topic in Cross-platform
You only need a iOS 16 device. BTW I don't write today iOS app but but at that time I learned that upgrading iOS on the device should be done only when there is a confirmation that debugging from Delphi works on new iOS. -
Seeking Collaboration: Creating a Delphi Component for STM32 Boards
Cristian Peța replied to techdesk's topic in General Help
What is "STM32 code"? Delphi code is not a communication protocol (similar to a spoken language) but a programing language. With Delhi code or any programing language you can not communicate. -
Seeking Collaboration: Creating a Delphi Component for STM32 Boards
Cristian Peța replied to techdesk's topic in General Help
Then you want to write a transpiler in Delphi to translate Delphi code to "STM32 language" and back? But what is "STM32 language" ? Just found something where Pascal is mentioned (link: https://www.st.com/en/development-tools/stm32-ides.html): And here (link https://smartsolutions4home.com/how-to-program-stm32/) states: "The only correct option here is C. Don’t bother with other creations." -
Current state of the Embarcadero services
Cristian Peța replied to Lars Fosdal's topic in General Help
https://blogs.embarcadero.com/getit-update-additional-rad-studio-12-getit-packages-are-now-available/ I understand from the link above that who installed with old online installer GetIt will not work. -
Current state of the Embarcadero services
Cristian Peța replied to Lars Fosdal's topic in General Help
For D12 there is a new installer because GetIt server changed. I suppose you need to install with the new installer in order to work Welcome page or Tools menu. -
TForm Destroys are not called when target is macOS ARM 64-bit
Cristian Peța replied to Navid Madani's topic in Cross-platform
Finally... upper right corner (not left).... basic and advanced search doesn't work -
TForm Destroys are not called when target is macOS ARM 64-bit
Cristian Peța replied to Navid Madani's topic in Cross-platform
You have not posted a link and probably it's a stupid question but how to find a RSP by number? -
How to obtain new 1-year licence for RAD Studio 10.4.2 CE
Cristian Peța replied to Willicious's topic in Delphi IDE and APIs
As @Uwe Raabe said, Embarcadero does not want to do this. You are the only one who can give Embarcadero a good reason to give you a new 10.4.2 CE license. If you have sources I don't think this is a show stopper. Ask help here if there is something blocking you to use D11. -
How to call a Delphi function from a python script?
Cristian Peța replied to softtouch's topic in Python4Delphi
That would be Delphi4Python. Otherwise you need a inter-process communication. For example your Delphi code can run in REST server. -
DateTime problem in fastreport's PFD export.
Cristian Peța replied to Ali Dehban's topic in General Help
I said before that mm represents also minutes if after hh. It states in documentation: mm Displays the month as a number with a leading zero (01-12). If the mm specifier immediately follows an h or hh specifier, the minute rather than the month is displayed.- 12 replies
-
- fastreport
- export
-
(and 1 more)
Tagged with:
-
DateTime problem in fastreport's PFD export.
Cristian Peța replied to Ali Dehban's topic in General Help
That field is not read by MemoView? Why convert it to String then again to TDateTime? In script you can use <MyTable."MyDateTimeField"> to read it as Variant that will keep TDateTime as it is (actually a Double).- 12 replies
-
- fastreport
- export
-
(and 1 more)
Tagged with:
-
DateTime problem in fastreport's PFD export.
Cristian Peța replied to Ali Dehban's topic in General Help
It is as text and it must be formatted like regional settings because you are using StrToDateTime() to convet this text to TDateTime.- 12 replies
-
- fastreport
- export
-
(and 1 more)
Tagged with:
-
DateTime problem in fastreport's PFD export.
Cristian Peța replied to Ali Dehban's topic in General Help
What value is in that frxMemoView text before change and what after?- 12 replies
-
- fastreport
- export
-
(and 1 more)
Tagged with: