Jump to content

Vandrovnik

Members
  • Content Count

    560
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Vandrovnik

  1. Vandrovnik

    K-Software

    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 🙂
  2. Vandrovnik

    K-Software

    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?
  3. Vandrovnik

    Delphi 11.3 is available now!

    You can still use Ctrl+Shift+F11 or Alt+p, o.
  4. Vandrovnik

    Delphi 11.3 is available now!

    I agree - tollbars never worked for me as expected. Finally, I have disabled all of them, keeping only "Component" enabled, and problem is solved 🙂
  5. Vandrovnik

    D 11.3 Word occurrences marking - colour setting

    Thank you! I completly missed this! (It applies even to .sql files, where I would like to highlight NULL, etc.)
  6. Vandrovnik

    D 11.3 Word occurrences marking - colour setting

    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).
  7. 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?
  8. Vandrovnik

    Delphi 11.3 is available now!

    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
  9. Vandrovnik

    Delphi 11.3 is available now!

    The same here... It was working just a few minutes ago...
  10. Vandrovnik

    Delphi 11.3 is available now!

    I can reproduce (125 %):
  11. Vandrovnik

    your own DB vs. 3rd-party?

    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.
  12. 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."?
  13. 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.
  14. Killing LSP should be enough: https://www.delphipraxis.net/1512626-post2.html
  15. Vandrovnik

    No one can help

    OK, did not check 🙂 Just wondering, why previous record, too?
  16. Vandrovnik

    No one can help

    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.
  17. Vandrovnik

    No one can help

    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?
  18. 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.
  19. 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?
  20. It is a black square: https://www.fileformat.info/info/unicode/char/2bc0/index.htm 11200 decimal, not 11200 hex.
  21. Vandrovnik

    IsZero or SameValue

    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 🙂 ).
  22. Vandrovnik

    floating point error, [solved].

    Hello, This is not error, this is how floating point numbers work... In binary, you cannot represent exactly 0.1.
  23. Vandrovnik

    Is there such a tool/functionality??

    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...
  24. Vandrovnik

    Huge memory problem

    Do you also have this? {$IFDEF DEBUG} System.ReportMemoryLeaksOnShutdown:=true; {$ENDIF}
  25. Vandrovnik

    Is there such a tool/functionality??

    ... 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.
×