Jump to content

Uwe Raabe

Members
  • Content Count

    2957
  • Joined

  • Last visited

  • Days Won

    171

Everything posted by Uwe Raabe

  1. Uwe Raabe

    What is this syntax?

    Yes, here: Enumerated Types with Explicitly Assigned Ordinality
  2. Uwe Raabe

    Add 2 controls to same row coulomb gridpanel

    Put a TPanel in the grid cell and place the label and LED onto that panel. The vertical alignment of a TLabel is controlled by its Layout property,
  3. As ProcessMessage already does all the work, there is not much to do in the body of this loop.
  4. Uwe Raabe

    upcoming language enhancements?

    Well, obviously announcing is easier than implementing.
  5. Uwe Raabe

    upcoming language enhancements?

    There definitely is a plan! The problem is how much of that plan turns into reality.
  6. Uwe Raabe

    Delphi on virtual machine and licence

    Would you mind writing in English, please? Otherwise a Personal Message would be a better choice.
  7. Uwe Raabe

    Delphi on virtual machine and licence

    I also use Delphi in many VMs. To overcome the installation limit I have switchen to a Network Named License and make use of my own license server (ELC). This allows me to install Delphi on as many VMs I want as long I have it running on up to three machines simultaneously.
  8. That menu item should be enabled whenever you have the CPU window open while debugging.
  9. Uwe Raabe

    D10.4.2 where's setting to not debug into RTL ?

    SelectiveDebugging
  10. Uwe Raabe

    Prevent from closing when....

    The VCL already provides such a flag for you: TApplication.ModalLevel
  11. Usually the MMX setup installs the app and also registers it into the Delphi IDE. You only have to select it as the default viewer.
  12. I expect the dataset to be closed when SQL changes. Otherwise the records would not match the SQL anymore. One can easily extend this to all other properties that have influence on the data retrieved and the way it can be accessed. What would be the benefit of an immediate exception here? The author of the code wants to change the SQL, so what would be the gain from that exception (which happens at runtime btw.)? The dataset has to be closed anyway to change the SQL, so why not closing it automatically? Unfortunately this option is not available in the poll (at least as I understand it).
  13. Uwe Raabe

    Class tree utility released

    Of you compile with packages and allow external packages be loaded dynamically.
  14. Uwe Raabe

    Class tree utility released

    Both tools have a completely different approach. While DelphiAST analyzes source code, the class tree utility requires the classes to be compiled into the exe.
  15. Uwe Raabe

    Edit Entity shortcut inconsistent

    If possible, could you be a bit more specific? I mean, that is a bit vague, isn't it?
  16. Uwe Raabe

    Format uses clause

    You have to activate that option:
  17. Uwe Raabe

    Format uses clause

    You can define the group names per project in MMX Properties - Project options: A single identifier is treated as a group prefix which has to be followed by a dot (like System, VCL, FireDAC). You can also use wildcards like Rz* for all units from Raize Components (KSVC). Unit names not covered in one of the schemes above can be listet in brackets. This is the setting for MMX itself: (ToolsApi,DesignIntf,DCCStrs,DockForm,TabDock);Winapi;System.Win;System;Xml;Vcl;VirtualTrees*;Rz*;Tb*;Png*;MMX The settings are stored in the dproj file.
  18. It needs some code to be added, but you can declare a const array[<enumeration>] of Integer with values 0 in all places where the enumeration is used in some way. const cCheckProjectType: array[TProjectType] of Integer = (0, 0, 0, 0); If you now extend TProjectType the compiler will stop at all places where such a declaration is present and you can inspect the code around for correct TProjectType usage. After that is done you extend the array values to make the compiler continue to the next problematic position.
  19. Uwe Raabe

    Using Attributes in class declarations

    Very good point 👍
  20. Enclosing the loops with a qryItemReceita.DisableControls/EnableControls should help a bit.
  21. Uwe Raabe

    Delphi compatibility with Windows 11?

    You can still have the first, but nevertheless the second being active. Usually an UEFI BIOS can be made working as an old fashioned one. Unfortunately switching that back to UEFI mode requires some significant work to make Windows boot again.
  22. Uwe Raabe

    Delphi compatibility with Windows 11?

    Two things that are sometimes overlooked: UEFI BIOS TPM 2.0 For the second item there is an article (in German): Windows 11 läuft wohl nicht auf Intel-Macs
  23. Uwe Raabe

    Build / Output messages filtering plugin

    AFAIK, there is currently no mechanism to intercept the message display via OTAPI.
  24. Uwe Raabe

    Apache Module with TDataSet Needs Wait Cursor

    Have you checked that opening the relevant FireDAC dataset (whatever is happening in dmParksDB.OpenParks) actually contains data on Linux? I mean, if there is no data in the dataset what can we expect?
  25. Uwe Raabe

    Apache Module with TDataSet Needs Wait Cursor

    I get the feeling that is isn't related to the wait cursor, but the timer implementation that comes with either of the Wait implementation units. While both the VCL and FMX implementations use a TTimer (VCL/FMX), the console implementation simply doesn't support a timer at all.
Ă—