Jump to content

Vandrovnik

Members
  • Content Count

    583
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Vandrovnik

  1. 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 🙂
  2. 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.)
  3. 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).
  4. 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?
  5. 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
  6. Vandrovnik

    Delphi 11.3 is available now!

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

    Delphi 11.3 is available now!

    I can reproduce (125 %):
  8. 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.
  9. 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."?
  10. 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.
  11. Killing LSP should be enough: https://www.delphipraxis.net/1512626-post2.html
  12. Vandrovnik

    No one can help

    OK, did not check 🙂 Just wondering, why previous record, too?
  13. 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.
  14. 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?
  15. 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.
  16. 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?
  17. It is a black square: https://www.fileformat.info/info/unicode/char/2bc0/index.htm 11200 decimal, not 11200 hex.
  18. 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 🙂 ).
  19. 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.
  20. 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...
  21. Vandrovnik

    Huge memory problem

    Do you also have this? {$IFDEF DEBUG} System.ReportMemoryLeaksOnShutdown:=true; {$ENDIF}
  22. 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.
  23. Could you manually delete the target file and try again? Or try to suspend antivirus software?
  24. Vandrovnik

    Should I be concerned about KERNELBASE.RaiseException + 0x62

    And what happens when you close the Local Variables window?
  25. Hello, I have noticed that in PDF exported using SynPdf, colors in PDF do not match original colors. I have created a test application, which displays colors on screen and allows to export them to PDF using SynPdf and using FastReport. Colors should be the same, but are not (RGB of the left bottom square should be 191, 0, 255, but is 223, 0, 255 using SynPdf). Is there something wrong in my export procedure, or is it a bug in SynPdf? Kind regards, Karel PdfColors-source.zip TestSynPdf.pdf TestFastReport.pdf
×