Jump to content

Uwe Raabe

Members
  • Content Count

    2549
  • Joined

  • Last visited

  • Days Won

    148

Everything posted by Uwe Raabe

  1. Uwe Raabe

    10.3.1 has been released

    The description in that report are not really detailed steps. Even the short hint in one comment is not what I call detailed steps. A good hint is: If it cannot be reproduced it is most likely that the steps are either incomplete or not precise enough. There is almost no day where I don't get a bug report that goes: Do X and you get Y instead of Z! (sometimes they actually mention the expected). Then when I do X as described I usually get Z and not Y. (Just answering one of these now)
  2. I showed this during EKON last year. Unfortunately I couldn't find the time working on it again. It heavily lacks documentation, but perhaps it can serve as a start. https://bitbucket.org/uweraabe/codecoveragemagician
  3. Uwe Raabe

    Error insight in Rio

    No, they probably don't read this Forum. Not sure if they actually read their own one. They read Quality Portal, though
  4. Uwe Raabe

    10.3.1 has been released

    If you can still reproduce it, you should dispute the resolution with detailed steps to reproduce.
  5. A for-in-loop doesn't guarantee some order. Any order seen just relies on the implementation and may be subject to change in the future. (Latest when we compile for quantum computers) I remember someone asking for a backwards for-in-loop, but that request is based on a false assumption in the first place.
  6. Uwe Raabe

    10.3.1 has been released

    Perfect! Then it is actually a regression, which pushes the probability of a timely fix. Now we only need that regression bug report. As the report claims to be fixed in 10.1 Berlin, can someone check if it was introduced in 10.2 Tokyo or one of its updates or in 10.3 Rio?
  7. Uwe Raabe

    10.3.1 has been released

    It is my experience that issues with the installation are usually targeted quickly. I know what you mean, but if we stop filing bug reports to notify them about existing stuff not working they will have more time to add unwanted features. Even if the chances for a filed bug to be fixed are pretty low, they are still higher than those for a bug not filed at all. After all 10.3.1 fixes more than 150 reported bugs, which were probably still not fixed if they weren't be reported in the first place.
  8. Uwe Raabe

    10.3.1 has been released

    What about filing a bug report?
  9. Uwe Raabe

    10.3.1 has been released

  10. Uwe Raabe

    MMX Beta 14.1 available

    Build 2289 available: fix: missing images in Entity Insight toolbar fix: scaling problem in About screen fix: problem sending email from support link
  11. Uwe Raabe

    Signing executables

    I am happy with a certificate from ksoftware since a couple of years now.
  12. Uwe Raabe

    MMX Beta 14.1 available

    Seems like this is a relic of former Windows versions. I will skip that check.
  13. Uwe Raabe

    MMX Beta 14.1 available

    It is not the wrong method: ShellExecute(0,'open',PChar(Link + S),nil,nil, SW_SHOWNORMAL); but rather a missing registry entry: if reg.OpenKeyReadOnly('HKEY_CLASSES_ROOT\mailto\shell\open\command') then begin Result := (reg.ReadString('') > ''); reg.CloseKey; end;
  14. Uwe Raabe

    MMX Beta 14.1 available

    Let me guess: Your DPI settings are at 125%? The version label is positioned on top of the image. The scaling moves the label, but leaves the image as is.
  15. Uwe Raabe

    10.3.1 has been released

    Perhaps people tend to prefer talking about things that don't work.
  16. I got it working now! First I changed the path setting back to the old value (on my machine it is "c:\Users\Uwe\AppData\Roaming\Parnassus OU\Common"). Then I copied the new DLL into that folder and renamed it to ParnassusCoreEditor_XRio.dll It seems that the DLL loader logic first looks for the "XRio" DLL and has a fallback to the original name. That way the different DLLs can coexist in the same folder and the XRio renaming allows for future version, too.
  17. Would it help to change the registry setting to "$(BDS)\\Experts" and make sure that the correct DLLs reside in the proper places?
  18. Uwe Raabe

    10.3.1 has been released

    The road map mentions 10.3.x, so I guess we can expect at least a 10.3.2 in the next months.
  19. Uwe Raabe

    10.3.1 has been released

    If you want to keep your settings you should answer NO. The question is about removing the settings.
  20. Uwe Raabe

    Blogged : Delphi Package Manager RFC

    Thanks for this blog post. Instead of just ranting about GetIt you start taking real actions. I appreciate that very much. Some ideas came already to my mind while reading, but I need to think a bit about them first. Regarding the design time components, I had tried to get this covered with my Package Magician mentioned in this blog post: There Can Only Be One – At a Time! While it works in the majority of cases, it heavily relies on the packages to be unloaded cleanly - sometimes not even standard Delphi packages can guarantee that. Unfortunately some of the big players in the package market seem to ignore that their packages my be unloaded and reloaded in the IDE. If you are interested I am open to contribute the code to your project. BTW, the link to the GitHub repository is broken.
  21. The more subtle cases are when code requires to switch that off to work properly and someone compiles with that switch on: if (something <> nil) and (something.someinstanceaccess) then
  22. The compiler switch makes it evaluate either all parts, which is perfectly valid in the first place, or evaluates from left to right, which is exactly what we want when writing Result := Condition or Result; So whatever that switch is, Condition is evaluated first.
  23. Make the function a static class function of a record: type TMyPassHandler = record public class function Pass<T:record>(const Value: T): Boolean; static; end; class function TMyPassHandler.Pass<T>(const Value: T): Boolean; begin Result := False; { do whatever is needed } end; Most of the time the compiler should be able to infer the proper type, so a call would look like: TMyPassHandler.Pass(myRec);
  24. That is a valid approach for the Result := Condition part, but in the original example Result is a string while Condition is a Boolean;
  25. if Condition then Result := True; Result := Condition; These are not the same! What if Result is true before that line in the first and in the second case?
×