Jump to content

Attila Kovacs

Members
  • Content Count

    2084
  • Joined

  • Last visited

  • Days Won

    29

Everything posted by Attila Kovacs

  1. Attila Kovacs

    Introducing Delphi Uses Helper

    thx for the november update too
  2. me neither, I just read what he wrote So maybe he could store the group number to the integer, as he is writing he is using this as a lookup table.
  3. For me it sounds like an indexing task, store the data to the integer and not the opposite.
  4. Attila Kovacs

    FireDAC Alternative

    I think you should first tell your story. How did you come to the conclusion to change the Universal Data Access Components (UniDAC) to a 'universal database solution'?
  5. Attila Kovacs

    TMS: Component compilation error

    there is a used package in the chain, built with the old rtl
  6. Attila Kovacs

    What is the benefit of sorting the Uses clause?

    Ah, wasn't it you who got rid of the comments in the form class declarations? 😛
  7. Attila Kovacs

    What is the benefit of sorting the Uses clause?

    Each unit name belongs to a new line, with groups separated by an empty line.
  8. Attila Kovacs

    Delphi 12 is available

    If you already a time billionaire, you could check these tools too https://www.google.com/search?q=install+monitor
  9. Attila Kovacs

    Script Errors galore when launching Delphi

    What menu is that? Found it in the main menu context. It looks like I uninstalled (along with many others) the BPL that had this community thing.
  10. Attila Kovacs

    Script Errors galore when launching Delphi

    I see. Maybe you could try some other values, like 11001 or 9999, but I'm out of ideas if that's not helping. 😕
  11. Attila Kovacs

    Script Errors galore when launching Delphi

    try to add bds.exe with decimal value 11000 full version list here https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/general-info/ee330730(v=vs.85)?redirectedfrom=MSDN
  12. Attila Kovacs

    Script Errors galore when launching Delphi

    Yeah I see that. I wrote FEATURE_BROWSER_EMULATION
  13. Attila Kovacs

    Script Errors galore when launching Delphi

    did you accidentally changed the rendering mode for Delphi? HKCU\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION
  14. I can't remember which unit it was, and which Delphi release, but there was a constructor similar to this where some graphics or hash table was filled with thousands of lines. After a certain size, the compiler silently cropped the code and linked the exe without any error. Nevertheless, I would rewrite the generator to produce 16 (0-F first byte) array constants, sorted by the MAC address rather than the vendor. Additionally, I would substitute the vendor string with a lookup table to eliminate the redundant entries.
  15. will it catch? place it at the top of the uses list in the dpr, set a breakpoint at the "begin" in "TExceptionCatcher.RaiseException" and examine the call stack unit ExCatcher; interface uses Winapi.Windows; type TExceptionCatcher = class public class procedure RaiseException(dwExceptionCode, dwExceptionFlags, nNumberOfArguments: DWORD; lpArguments: PDWORD); stdcall; end; implementation class procedure TExceptionCatcher.RaiseException(dwExceptionCode, dwExceptionFlags, nNumberOfArguments: DWORD; lpArguments: PDWORD); begin // place breakpoint here end; initialization RaiseExceptionProc := @TExceptionCatcher.RaiseException; end.
  16. I call MessageBox because ShowMessage had some issues before initialization.
  17. Attila Kovacs

    How to detect when a Form is active in Designer

    I think you are looking for IDesignNotification / DesignerOpened in DesignIntf.pas the menu item is EditLockControlsItem:TMenuItem on the main Form, and the action is EditLockControlsCommand:TAction
  18. Attila Kovacs

    When will we have a 64-bit IDE version ?

    You have selected "Search in directories" on that screenshot. I never used this feature since I use a proper file manager for tasks like that, but the question that arises is: Is it possible that you have a circular directory link, and Delphi is not able to detect it?
  19. Attila Kovacs

    Issue with CTRL-A

    Which Delphi version? I have a Ctrl-A patch unit in my Berlin but the only comment is that it's fixed in Tokyo 😄 edit: ok, it's something different from your issue.
  20. Attila Kovacs

    Import / Export PIPE delimited text <> SQLite3 64Bit Database

    I don't really want to answer anything, I'm just making a remark that https://sqlitestudio.pl/ can import CSV files with a custom separator. It's such a basic feature, if "Database NET Pro 5" can't do that, drop it. I can't comment on the other issues related to slow data entry into a Unicode database, as it doesn't make much sense to me. 32,000 entries are not even that many.
  21. Attila Kovacs

    Is it worth resubscribing now?

    A lot of water has flowed under the bridge since the release of Berlin U2, and I'm starting to feel that I need a more recent version and there is this September discount until the 30th.. Is the current one as stable as Berlin?
  22. hm, right. I think virtual / overriden having a DispatchKind of dkVtable and overwitten different parent. A bit of puzzle.
  23. Yes and no. The overloaded methods will be listed one by one with the same name in getmethods but only the public ones.
  24. Attila Kovacs

    Nobel prize for figuring out

    What DB are you using? Does it have a logfile? Can it be turned into verbose mode?
  25. Attila Kovacs

    Nobel prize for figuring out

    can you spot here your exe or path? Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers
×