Jump to content

Darian Miller

Members
  • Content Count

    559
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by Darian Miller

  1. Darian Miller

    Idera acquires PreEmptive

    It looks like more acquisitions from Idera in the near future...bank account topped-up, ready to go! Apparently it doesn't affect Embarcadero much as there doesn't seem to be a lot of inter-company promotion and integration going on.
  2. Darian Miller

    Remote desktop friendly

    Um... no. To be "nicer", all the replacement code would have to be better than the existing Delphi code. At least much of the current Delphi code is stable. Rewrite your biggest project in a hurry and see if it's better.
  3. Darian Miller

    Annoying IDE behavior changes in 10.4.2

    For me, I hope they don't waste their resources on it and remove the classic code insight option in 10.5. They are taking large swipes at piles of technical debt. Of course, they are adding to the pile as well. It certainly seems like more is coming off the pile than is being added.
  4. Darian Miller

    Delphi 10.4.2 first impressions

    Flawlessly is questionable. There has been at least one report of Error Insight killing the IDE for a large project and no apparent ability to completely disable it.
  5. There's a potential show-stopper for non-Windows platforms https://www.ideasawakened.com/post/rad-studio-10-4-2-is-great-but-here-are-some-notes
  6. Darian Miller

    Delphi 10.4.2 first impressions

    I assume everyone running VirtualBox with 10.4.2 will get this error with no workaround?
  7. Darian Miller

    Delphi 10.4.2 first impressions

    Did the changes solve your problem?
  8. Download available from my.embarcadero.com
  9. You should not do a seperate manual uninstall. If you manually uninstall, then you should manually save your settings first. If you use the installer to install 10.4.2 and let it uninstall the prior version then you will be prompted to save your settings.
  10. Darian Miller

    Delphi 10.4.2 first impressions

    Nope. It works fine for me on a clean install of 10.4.2 Perhaps you have some IDE Experts installed like CNPack or GExperts? If so, I'd try to remove them and try it again.
  11. Note: If you install 10.4.2 with the offline ISO you still have to put GetIt into online mode which can be done from the command prompt after installing: GetItCmd.exe -c=useonline
  12. Goto https://my.embarcadero.com and login and click the download link in the left panel.
  13. Darian Miller

    Link to download Delphi version 10.4.2 Professional

    Goto https://my.embarcadero.com/ and logon and then click on the Download icon in the left panel to get a list of files that you can download.
  14. Darian Miller

    Nneed a mentor

    You can join a Delphi related Telegram group for free, here are two: https://t.me/delphidevelopers https://t.me/DelphiProgramming_Eng Post a question on Telegram and see if you get a quick response. I know there are some Russian speaking developers on there. I would assume there's a Russian-only Delphi Telegroup available as well.
  15. Darian Miller

    Delphi 10.4.2 first impressions

    I'd give the graphics card more virtual memory, disable acceleration, and maybe a different controller choice. I hope something works!
  16. Darian Miller

    Delphi 10.4.2 first impressions

    Yes, I'd assume it's incompatibility on the virtual graphics hardware. Maybe check for updates on VirtualBox, or tweak the settings to a more generic display (if possible, it has been a while since I used Virtual Box)
  17. Darian Miller

    Delphi 10.4.2 first impressions

    I installed offline to a clean install of Windows 10/20H2 and I cannot reproduce. (Target system is running on VMWare Workstation though.)
  18. Darian Miller

    How to Refresh 10.4.2 CodeInsight

    That is supposed to be automatic. There's a new progress bar showing CodeInsight activity - is that doing anything?
  19. Darian Miller

    Delphi 10.4.2 first impressions

    With the occasional exception, binaries should be compatible across the major version releases. (10.4 and 10.4.1 and 10.4.2) https://www.ideasawakened.com/post/about-binary-compatibility-on-new-versions-of-delphi
  20. Darian Miller

    Delphi 10.4.2 first impressions

    Indeed! Just wrote a blog post on that: https://www.ideasawakened.com/post/rad-studio-10-4-2-is-now-available-with-a-much-enhanced-error-insight
  21. Also note - it was stated in the 10.4.2 release webinar that the online help wasn't completely updated for 10.4.2. The online wiki was updated, but the help is not completely up to date with 10.4.2. One nice improvement with help is that you click on a compiler error and hit F1 to bring up the help for that error. (Used to work back that way in Delphi 7)
  22. http://docwiki.embarcadero.com/RADStudio/Sydney/en/10.4_Sydney_-_Release_2
  23. Marco's announcement on the new blogs site: https://blogs.embarcadero.com/rad-studio-10-4-1-has-been-released/ Updated my wiki page with info on 10.4.1: https://github.com/ideasawakened/DelphiKB/wiki/D27.SYDNEY.10.4.1.0 RAD Studio 10.4.1 has a strong focus on quality improvements. Key quality focus areas include: IDE Delphi Code Insight (LSP) Parallel Library SOAP & XML C++ Toolchain FireMonkey VCL Delphi Compiler iOS Deployment New Features Packages can now have an automatic version suffix (instead of manually updating and specifying the right version suffix with each new release) New reader-write lock implementation via the new TLightweightMREW record Faster and more lightweight than the TMultiReadExclusiveWriteSynchronizer (TMREW) Works across all platforms (TMEW was a simple critical section on some) Much improved support for multi-monitor desktop layouts and 4k monitors The floating form designer has been removed The Broadcast to devices option is now off by default Platform Support Deployment to Windows Server 2019 now supported The LSP based Code Insight much improved from its initial 10.4 release
  24. Darian Miller

    How do you identify bottleneck in Delphi code?

    Are you using a Profiler to measure performance of your application, or simply timing specific code snippets? I'd suggest a Profiler if you aren't using one now...you'll tyipcally see the big bottlenecks pretty easily.
  25. Darian Miller

    Uniqueness and Security of domain name

    You don't want to validate a name. You want to validate a logon session against your domain controllers. You could also split the secure features in the DLL into a different DLL and put that secure DLL into a place on the network that only authenticated users have access to. (That doesn't help if someone makes a copy of the DLL and exposes it later.) Finally, consider adding the secure DLL code to a web service and authenticate the calls made to the service,
×