Jump to content

Uwe Raabe

Members
  • Content Count

    2830
  • Joined

  • Last visited

  • Days Won

    168

Everything posted by Uwe Raabe

  1. Uwe Raabe

    Problem with Reverse Assignment and comments

    Indeed, it has. It is just not supported, as well as a couple of other scenarios. It is supposed to work when the assignment is isolated on that line. I have added a feature request. While the official way would be to mail to support@mmx-delphi.de, this place is also OK. It has the advantage that it is public and others can join the discussion.
  2. Uwe Raabe

    Code signing in a remotely working team?

    Indeed. Actually having multiple developers building the same project can be the trickier part when it comes to shared resources. Of course it may need some investment first - that is money as well as time - to get it working properly.
  3. Usually MMX avoids to duplicate functionality already available in the IDE. In most of the cases where it does, it is probably the IDE implementing a similar feature recently (f.i. Extract method). If you feel MMX needs too much time to parse the unit after changes not made by itself, you might try to reduce the Delay times in the General -> Synchronization options of MMX. The defaults were made for hardware standards now pretty much outdated.
  4. Uwe Raabe

    Issue With TForm.AlphaBlend and AlphaBlendValue

    Obviously you can't have both.
  5. Uwe Raabe

    Issue With TForm.AlphaBlend and AlphaBlendValue

    The application needs a manifest with a compatibility entry for Windows 10.
  6. I wonder when anyone comes up with a request for threadconst.
  7. ... unless you allow that with a compiler directive: Writeable typed constants
  8. Uwe Raabe

    File extension icons all gone with D12.2

    Tools > Options > IDE > File Association
  9. CmonLib Initializing provides a way to register a procedure to be called during Application.Initialize. This allows to make adjustments before (f.i. in the dpr file or some units), which would be near to impossible if the initialize code would execute in the units initialization section.
  10. Uwe Raabe

    Delphi roadmap 2024

    IIRC, he said that internally there is a road map. They use to have private talks to selected users about their needs, which may influence their road map. He also mentioned that there is no official road map due to legal concerns.
  11. Uwe Raabe

    Correct transition from dcc32.exe to MSBuild.exe.

    Indeed, my statement covered only the simple case, where a batch file was executed by doubl-clicking it from the explorer. The actual details are ever so often a bit more sophisticated. F.i. you can wrap commands in SETLOCAL and ENDLOCAL to make temporary changes: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/setlocal
  12. Uwe Raabe

    Work-around for TEdit vertical alignment problem

    As long as it is a native Windows control, we are limited by its internal functionality. Currently it doesn't support that: Edit Control Styles
  13. Uwe Raabe

    Correct transition from dcc32.exe to MSBuild.exe.

    AFAIK, the change to the PATH variable lasts until the batch file ends (unless executed by a call). If you need to call different Delphi versions inside the same batch file, you might save the original value and restore it before calling the next rsvars.bat.
  14. Uwe Raabe

    Work-around for TEdit vertical alignment problem

    Well, in that case...
  15. Uwe Raabe

    GetIt Issue..

    This usually happens when you either run the IDE under a different user account or registry branch.
  16. Uwe Raabe

    Correct transition from dcc32.exe to MSBuild.exe.

    Usually it is sufficient to call the rsvars.bat of the required version: call "c:\Program Files (x86)\Embarcadero\Studio\23.0\bin\rsvars.bat"
  17. Uwe Raabe

    Delphi 12.2 available for download

    Well, TParallelArray has been introduced in 12.2, so it won't be available in 12.1. One just cannot use something from 12.2, that did not exist in 12.1. This must not necessarily be used by your own code, but it can by some 3rd party code.
  18. Uwe Raabe

    Simulate mousedrag

    Technically you also get half of the bottom frame with that.
  19. Uwe Raabe

    Simulate mousedrag

    The comment from @Kas Ob. is correct. To always be on the safe side, you can use the following code to calculate the correct position: var P0 := Point(Left, Top); var dx := Width div 2; // X center of form var dy := (Height - ClientHeight + (Width - ClientWidth) div 2) div 2; // Y center of title P0.Offset(dx, dy); var P1 := P0; P1.Offset(200, 200); SimulateMouseDrag(P0.X, P0.Y, P1.X, P1.Y); Note that this might need some more calculations under high dpi situations.
  20. Uwe Raabe

    Work-around for TEdit vertical alignment problem

    I usually keep the default AutoSize = True setting. IMHO, this looks better than the large gaps above and below.
  21. Uwe Raabe

    Delphi 12. Structure window, tab control

    That is not true! A TTabControl has its uses cases just like a TPageControl has. I assume you are referring to TTabbedNotebook as the deprecated one.
  22. Uwe Raabe

    When will we have a 64-bit IDE version ?

    Nevertheless it is possible to use it from inside the IDE, although with the restrictions that come with using MSBuild from the IDE in general.
  23. Uwe Raabe

    When will we have a 64-bit IDE version ?

    Nobody claimed it were a 64 bit IDE. Only the compilers and the LSP server are available as 64 bit versions. The IDE still is 32 bit. That is why the 64 bit compilers can only be used with the MSBuild option.
  24. Actually, you can. Let me quote @Remy Lebeau from another thread: As an example, see the C++ Builder packages of VirtualTreeView.
×