Jump to content

Uwe Raabe

Members
  • Content Count

    2960
  • Joined

  • Last visited

  • Days Won

    172

Posts posted by Uwe Raabe


  1. 13 hours ago, luciano_f said:

    Can the 64-bit IDE generate 32-bit Exe ?

    Yes, albeit not really straight forward. Also the Win32 platform has to be enabled for the project, which will always be the case when you create a new project even inside the 64-bit IDE.

     

    The trick is to create a Build Group and include Win32 as target platform in it.

    • Thanks 2

  2. Since the announcement in the See What's Coming in RAD Studio 13 Florence webinar last Wednesday, where MMX Code Explorer was promoted as a replacement for the removed refactoring in Delphi, there have been more than 1200 downloads. With this number it is no surprise when some people encounter problems installing or using it. This is a short list of things that happened and hints how to avoid these problems. I expect this list to be extended over the next couple of days.

     

    • Some people get a virus warning when downloading the zip file. This is the MD5 hash of MMX_Setup_16_0_8_59.zip to verify that your copy is the original one: c24ef7eb0d073a97541bd8e11494cdad
    • Always use the recommended Install for me only option! The admin mode Install for all users is heavily broken and can lead to problems when uninstalling. If multiple users are sharing the same Delphi installation each one has to install its own copy of MMX Code Explorer.
    • Don't set your Startup Desktop to <none>. While this worked in previous versions, the new V16 doesn't like it. The issue will be investigated.
    • Like 4

  3. 6 hours ago, dummzeuch said:

    They gave the version the number 13 and you suppose they jump in the BDS version from 23 to 37 in order to avoid 13?

    Indeed, 24 would have been expected, bat wasn't 24 some sort of secret Illuminati number? And 24 + 13 = 37 😲

    • Haha 7

  4. I made some tests. In all cases Hints are enabled.

     

    Targets: Win32/Win64

    DEBUG, Assertions on : no hint

    DEBUG, Assertions off : no hint

    RELEASE, Assertions on : hint

    RELEASE, Assertions off : No hint

     

    The behavior with RELEASE seems fine, but why is it different with DEBUG?


  5. Yep, that sounds like a valid scenario for triggering the problem.

     

    I also cannot explain why the code is as it is - I just kept it as it was when I took over.

     

    Do you have a suggestion which window handle I could use as the owner window?


  6. The message is expected. It basically asks if it should copy existing V15 settings to V16.

     

    I assume the 15.0.7.52 is a typo and should read 16.0.7.52 and refers to the latest beta version?

    That didn't make use of separate V16 settings and silently used the V15 ones, so that message is not triggered.

     

    Back to the actual problem. As there were quite a couple of downloads and installations since the webinar and I'm not getting tons of complaints like the above, there must be something in your environment triggering that.

     

    The code responsible for that message is:

        if MessageBox(0, PChar(Format('Use MMX Code Explorer V%d settings?', [MidexVersion - 1])),
                      'MMX Code Explorer', MB_YESNO or MB_ICONQUESTION or MB_TASKMODAL) <> IDYES then Exit;

    Because of MB_TASKMODAL any windows shown by other threads can be shown and worked with, so I guess some other thread is showing a window not visible to us in a way that blocks input to the MMX message.

     

    The one thing visible on the screenshot is GExperts for Delphi 12 :classic_huh: . Just to rule things out, can you please try without that?


  7. There is a video linked to from the MMX website, but that is in German. There are plans to do something like this in English using a more recent Delphi and MMX version, but the biggest problem is to find some time.

     

    While there also will be a workshop next Wednesday (also in German), there are plans to offer online workshops in English and German. Unfortunately there is no time frame for that.

    • Like 2

  8. On 9/7/2025 at 8:34 PM, david berneda said:

    I had an issue with a test project that lost the options, this would never happened if something like PASS existed.

    This sounds as if you want a fallback for the case when parts of the dproj file get lost.

     

    At the end, implementing your proposal will override the settings in the dproj file and make it (at least partly) obsolete. Especially the different Build Configurations and platform settings are almost meaningless when such options are placed inside the sources.

     

    I cant' help, but to me it looks like you want to solve a completely different problem. If I get it right, it is already solved by using version control.

    • Thanks 1

  9. 33 minutes ago, david berneda said:

    Potential versionitis issues if A and B where compiled with a different version of the shared unit/package.

     

    6 hours ago, david berneda said:

    both units should share a living instance.

    What about that living instance? Where is it declared and where does it live? Will interchanging it survive being compiled with different versions of A and B? Even being compiled with different compiler settings may cause a crash.

     


  10. 8 hours ago, Dave Novo said:

    However, it seems impossible for me to browse other people's issues on this new portal so not sure anyone else can see it. 

    I cannot see your new entry either. To make an issue visible to others one should leave the Share with at Share with Embarcadero Customers.

    image.png.8140a221a4caa77862156b2d336a4b05.png

     

     

    You should be able to change that even for your exiting issues to add this group in case it is missing.

     

    image.thumb.png.6a5beb19220b5f0e6c393d4589b47bec.png

×