Jump to content

Silver Black

Members
  • Content Count

    136
  • Joined

  • Last visited

Everything posted by Silver Black

  1. Of course it is, they didn't report anything. And all this situation is a very bad sign about the future of Delphi.
  2. Nonetheless, even if I love Delphi and I have a very big project with it, I started learning C# and Visual Studio Community...
  3. Are they working on it? Because I'm not so sure at this point...
  4. Install - Articles - Fast Reports (fast-report.com)
  5. But it's for this reason that I wanted to understand the problem, since I had a different experience I wanted to know what was he talking about, I wasn't saying I didn't believe him or that he was not telling the truth. I know the issue is still there, just to know how it could affect the installed IDE. Thanks to @Angus Robertson to his kind response.
  6. What are you talking about? My CE works perfectly, it's just GetIt that it's unreachable, but the IDE works, che compiler too. I'm currently working on my +150K code lines project with no delay.
  7. Probably this is the sad reality.
  8. Since GetIt is still down, fortunately I was able to download my component from GitHub. That saved my butt. How to reinstall Help system from the ISO? I didn't installed it on the first time and I'd want to avoid that my customization will be overwritten by a bran new installation (again!).
  9. https://blogs.embarcadero.com/we-are-experiencing-a-hardware-outage/?fbclid=IwAR0VPhFRVifIDf8SpSM7lqffFpTh8cHc75xApvcTzziP13as44_nMkp9i48
  10. The actual point is: they never mentioned this in any newsletter. They should have.
  11. Silver Black

    Is getit down for everbody?

    No more, for me Wiki and GetIt - at least - are down again...
  12. Hi! I have this declaration: function WinSATGetScore(out Score: TWinSATScore): Boolean; external 'WinSATAPI.dll'; But I get the run-time error "Impossible to find WinSATGetScore entry point procedure in dynamic link library <executable.exe>". What's wrong in the declaration? The DLL is a system one and thus included in my Windows 11 System32 folder.
  13. It's a start, thank you so much!
  14. I had looked into that, but I wasn't sure, now I saw the registered dll, thank you again. However, I still don't know how to call the function I used to call like this: function WinSATGetScore(out Score: TWinSATScore): Boolean; external 'WinSATAPI.dll'; How the new WINSATLib_TLB.pas unit created from the IDE should help with my problem?
  15. But did you create this on the fly just now, for me?! How did you do that from the original DLL? Thank you so much mate!
  16. Delphi 10.3.1, on my project code completion just stopped working completely, even on full rebuild or restarting the IDE. 😞 That's a real shame, it never ever happened in 10 years with Delphi 2010 (it was perfect). ...and it came back, after some coding, building, seraching and runnings… Nice, but worrying. Not able to reproduce it.
  17. Silver Black

    CyberInstaller Suite 2022

    Friends developers, I wanted to share with you my enthusiasm: a few days ago I finally made my CyberInstaller Suite 2022 software available for public download! CyberInstaller Suite is aimed at any developer of any language or development environment. The 2022 release is now available! This long-awaited new version improves UNICODE support, features freely selectable themes, support for Windows 11, support for large fonts for high resolutions, digital signatures to any file in the package, a redesigned interface, an enhanced on-line update system for the installed applications and a completely redesigned extraction engine corruption-proof. Other features of CyberInstaller Suite are: proprietary engine updated and even more flexible detailed report of the changes made to the system roll-back installation wizards for assisted package creation Find Dependencies fully automatic improved multilingual support, Translator tool included serial codes, automatic creation and management of infinite codes minimum requirements, intuitive and flexible management Microsoft Framework .Net support all versions of Windows including Windows 11, 32/64 bit automatic ActiveX installation based on platform (32/64 bit) silent installation and removal even from a remote System user or from the Windows scheduler automatic online updates, even for installed applications Windows Installer, built-in support for .msi and .msm fonts: improved installation and no system restart required Side-By-Side installation mode for special components in just a few clicks flexible output selectable between: self-extracting executable or uncompressed package software prerequisites with on-the-fly download during installation extremely improved scalability of large packages digital signatures to sign any package file and the package itself If you want to try it, I'll be happy! You can find it here: https://www.silvercybertech.com/english/index.html You can also write a review about CyberInstaller Suite via this SourceForge form: https://sourceforge.net/software/product/CyberInstaller-Suite/reviews/new
  18. Silver Black

    Parnassus Bookmarks for Delphi 11 Alexandria?

    Hey dev mates, at the end of the day... who cares anymore! I just got used to use native simple bookmarks again and for me that's enough. They are saved even in furhter work session, even closing the IDE (but not if you close the unit), so for me is enough. Not the optimum solution like the Parnassus ones, but whatever.
  19. Silver Black

    Enhanced messageboxes

    From the glorious Windows Vista, a new kind of MessageBoxes were introduced, with an added description (beside the usual message, title, icon and buttons for user interactions). I used this messagebox style in my Delphi projects thanks to a wrapper for the APIs featured from Vista and above, but now, from Delphi 10.3, with themes activated, I have a strange behavior: if the more than a button is not provided in the style parameter, I have a an empty title! If I disable themes the title is correctly displayed. Now I was thinking of doing my own custom messagebox (just a simple customized modal form), so I can even expand its functionalities. But before I reinvent the wheel, I wonder: what do you use for your apps as messageboxes? Please don't tell me "ShowMessage"! 😁
  20. Silver Black

    Enhanced messageboxes

    Eventually I end up using this simply code, that is very straight forward, using a component created on the go that handles the taskdialog for every different Windows version hassle-free and suppports thems (and no need to use API). procedure TFromMain.Button1Click(Sender: TObject); begin with TTaskDialog.Create(nil) do begin try Caption := 'Dialog Caption'; Title := 'Dialog Title'; Text := 'This is dialog text.'; CommonButtons := [tcbClose]; Execute; finally Free; end; end; end;
  21. Silver Black

    Enhanced messageboxes

    TY so much, that's what I need! ❤️
  22. Silver Black

    Enhanced messageboxes

    Yes, exactly. I'm trying the TTaskDialog component, may this be the way to go? The only draw back is that I don't like a component on an actual form to make this, example if I have to show a message from a unit or project with no forms.
  23. Silver Black

    Updated Community Edition

    Why a Delphi 10.4.1 CE edition does not exist? The CE is still in 10.3 version...
×