-
Content Count
560 -
Joined
-
Last visited
-
Days Won
6
Everything posted by Vandrovnik
-
Well, it looks suspicious - even on Sectigo's shope I have not seen 5-years code signing certificate. I wonder if someone already tried them 🙂
-
What about https://signmycode.com/offers/code-signing-certificates ? If I now buy code signing certificate for 5 years, can I really use it during next 5 years without hardware device?
-
You can still use Ctrl+Shift+F11 or Alt+p, o.
-
I agree - tollbars never worked for me as expected. Finally, I have disabled all of them, keeping only "Component" enabled, and problem is solved 🙂
-
D 11.3 Word occurrences marking - colour setting
Vandrovnik replied to Stano's topic in General Help
Thank you! I completly missed this! (It applies even to .sql files, where I would like to highlight NULL, etc.) -
D 11.3 Word occurrences marking - colour setting
Vandrovnik replied to Stano's topic in General Help
For me, it works in whole unit. Do not know why, but it does not work for reserved words (double clicking a "begin" does not highlight other occurencies of begin). -
Hello, I am not able to start 1 Android app of 3 apps since migration to Delphi 11. I did the "Revert system files to default" on Libraries. It fails in FMX.Platform.Android, TPlatformAndroid.Create, on the line Activity.addListener(FActivityListener): Please any ideas what can be wrong / how to repair it?
-
It seems, that when you run RAD Studio Command Prompt, you can use: "c:\Program Files (x86)\Embarcadero\Studio\22.0\bin\GetItCmd.exe" -l= -f=installed
-
The same here... It was working just a few minutes ago...
-
I can reproduce (125 %):
-
If you use "normal" databases liky MySQL, Firebird etc., network administrators should be familier with them and can backup them, restore, move to another server etc. - form the point of view of a network administrator, this is much better than having to work with something unknown.
-
Delphi beta testing a "premium" privilege?
Vandrovnik replied to Brandon Staggs's topic in Tips / Blogs / Tutorials / Videos
Shall I translate it for myself as "Give us your money for new versions (you can pay for 1, 2 or even 3 years), but we will not tell you what you get for your money."? -
Delphi beta testing a "premium" privilege?
Vandrovnik replied to Brandon Staggs's topic in Tips / Blogs / Tutorials / Videos
Hmm, in my environment, all prior versions had more problems than 11.2. (Well, not all - Delphi 6 was fine 🙂 ). I do not know if it could matter, but I always put DCU directory for my projects to RAM disk, so each day after power on (I do not use hibernation), IDE starts without any old .dcus. I have noticed, that often, when I make change in "interface" section of a unit (for example, add "Test: integer;" to public section of a class) and try to compile project, IDE complains with "[dcc32 Fatal Error] oKos.pas(43): F2084 Internal Error: AV11CD26DE(11C60000)-R000004F8-0" in another unit (that unit depends on unit where I made the change). May be the same internal error occurs in LSP and causes the trouble... Build works fine. -
Delphi 10.4.2 Right Click over a word -> Find Declaration, Not working.
Vandrovnik replied to Juan C.Cilleruelo's topic in Delphi IDE and APIs
Killing LSP should be enough: https://www.delphipraxis.net/1512626-post2.html- 45 replies
-
- 10.4.2
- find declaration
-
(and 1 more)
Tagged with:
-
OK, did not check 🙂 Just wondering, why previous record, too?
-
Which error? May be it cannot work together with filtering... But you should be able to do filtering using SQL query and than use Unidirectional.
-
For Firebird, I use IBX component, which have "Unidirectional" property. When set to True, only current record is kept in memory. Maybe your database components have similar functionality?
-
How does the "Address Space Randomization (ASLR)" actually work
Vandrovnik replied to Tommi Prami's topic in General Help
This is in Winapi.Windows.pas: type PMemoryBasicInformation = ^TMemoryBasicInformation; _MEMORY_BASIC_INFORMATION = record BaseAddress : Pointer; AllocationBase : Pointer; AllocationProtect : DWORD; RegionSize : SIZE_T; State : DWORD; Protect : DWORD; Type_9 : DWORD; end; {$EXTERNALSYM _MEMORY_BASIC_INFORMATION} TMemoryBasicInformation = _MEMORY_BASIC_INFORMATION; MEMORY_BASIC_INFORMATION = _MEMORY_BASIC_INFORMATION; MemInfo is just a local variable in System.SysUtils, function GetExceptionObject. -
System.Generics.Collections.TList.BinarySearch if there are duplicates
Vandrovnik replied to dummzeuch's topic in RTL and Delphi Object Pascal
Has someone created it on QP, so that we can vote? Probably with link to https://en.wikipedia.org/wiki/Binary_search_algorithm#Procedure_for_finding_the_leftmost_element Everyone usually needs better version immediatelly, while waiting for the fix can take... ehm... few years? -
Possible changes to string/char handling in Delphi 11(.2)?
Vandrovnik replied to omnibrain's topic in General Help
It is a black square: https://www.fileformat.info/info/unicode/char/2bc0/index.htm 11200 decimal, not 11200 hex. -
If you use type "currency" instead of "double", it would work too and you can avoid most of the conversions between numerical and string types. Currency can keep 4 decimal places (even the 0.1 🙂 ).
-
Hello, This is not error, this is how floating point numbers work... In binary, you cannot represent exactly 0.1.
-
I always cross my fingers before using refactoring (renaming)... And it sometimes works 🙂 Sometimes it even does rename the identifier at all places and does not forget some of them...
-
Do you also have this? {$IFDEF DEBUG} System.ReportMemoryLeaksOnShutdown:=true; {$ENDIF}
-
... and it tooks quite a lot of time to initialize. "Search for usages" also does just partial job when you doubleclick found item - it display the file, it selects found item, but cursor is off-screen, sou you have to press for exampe an arrow to see that place.