-
Content Count
478 -
Joined
-
Last visited
-
Days Won
6
Vandrovnik last won the day on December 20 2022
Vandrovnik had the most liked content!
Community Reputation
164 ExcellentRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
When will we have a 64-bit IDE version ?
Vandrovnik replied to luciano_f's topic in Delphi IDE and APIs
EPNGOutMemory - may be the reasons is just in the number of simultaneously opened forms (which contains big images)? In that case, 64-bit IDE would solve the problem. I keep open just a few forms and datamodules, may be that is the reason why I have never encountered this problem. -
Migrate an old app in Delphi 2009 to modren C++
Vandrovnik replied to Alkanium's topic in General Help
So old bugs will be converted to C++ and new bugs will appear from the conversion itself ๐ -
When will we have a 64-bit IDE version ?
Vandrovnik replied to luciano_f's topic in Delphi IDE and APIs
At least 128-bit IDE ๐ -
When will we have a 64-bit IDE version ?
Vandrovnik replied to luciano_f's topic in Delphi IDE and APIs
Just curious - please could you post a screen shot of the error message, when you encounter low memory in the IDE? -
Multiline strings!
-
Delphi 11.3 lite. dosent work code completion
Vandrovnik replied to NBilov's topic in Delphi IDE and APIs
I wonder what is the reason that we have so different user experience with IDE. Maybe third party components? Some IDE wizards/experts? Or you are using a part of Delphi language, which I do not use, such as types defined inside a class, inline variables etc.? For debugging, I compile to 32bit, because 64bit debugger was very slow and I do not check with each new IDE version, whether it is already better. -
Delphi 11.3 lite. dosent work code completion
Vandrovnik replied to NBilov's topic in Delphi IDE and APIs
For me, code completition works almost always fine in Delphi 11.3.1 Pro. Project size is over 1 000 000 lines of code. -
It probably treats that section as published then: The compiler treats a published section like public unless RTTI is enabled with the $M or $TypeInfo compiler directives, or if the class inherits from a class with RTTI enabled. TPersistent in Delphiโs Classes unit enables published RTTI, so all persistent classes (including all components, controls, and forms) have RTTI. The initial, unnamed section is published for classes with RTTI.
-
What error message do you get?
-
Delphi 11.3, issue after encrypting exe file -> bad symbols @ GUI
Vandrovnik replied to o815's topic in Delphi IDE and APIs
But it does not change internal layout, does it? Just the address of code, data and stack segments is randomized. -
Delphi 11.3, issue after encrypting exe file -> bad symbols @ GUI
Vandrovnik replied to o815's topic in Delphi IDE and APIs
Why? Can this be a problem for a correctly written application? -
How to modify the code for $R+
Vandrovnik replied to dummzeuch's topic in Algorithms, Data Structures and Class Design
Eh, sorry, I have seen UInt16 in parameter definition and did not notice that temporary variable is Int16, without the "U"... -
How to modify the code for $R+
Vandrovnik replied to dummzeuch's topic in Algorithms, Data Structures and Class Design
For input = 0, I would expect the problem already here: Dec(TempInt, 2048); -
generics Destructor of Object in TObjectList<k,v> never gets called despite doOwnsValues
Vandrovnik replied to omnibrain's topic in Algorithms, Data Structures and Class Design
destructor Destroy; override; -
That will loop the code (x+1) times ๐