Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 11/27/19 in Posts

  1. jbg

    RAD Studio 10.3.3 now available

    Why? There seem to be no changes in the IDE and the compilers that would brake the current IDE Fix Pack 6.4.4.
  2. Gustav Schubert

    RAD Studio 10.3.3 now available

    Fixed, 367 more days for my CE installation. I have requested a new license via free-download page, using same email login as always, and got email with new license key. Then I used the license dialog of Tokyo Pro to register new license and delete expired license. Quote from comment on FB page: "Please make sure your license is expired, otherwise you will get the same expiration date as before." This may very well be true.
  3. Dalija Prasnikar

    Delphi 10.3.3 CE IDE issues

    It is fixed.
  4. Stéphane Wierzbicki

    RAD Studio 10.3.3 now available

    Sorry for the confusion! I should have said that I don't understand why your fixes are not TOTALLY included in Delphi RIO! Anyways... I'm still thanking you for all your hard work.
  5. Dalija Prasnikar

    Debugger in 10.3.3 is useless :'(

    Tools -> Options -> User Interface -> Editor -> uncheck Preserve line ends
  6. dummzeuch

    GExperts and virus scanners

    I let Windows Defender do a full scan of my computer (excluding the source directory which contains the installers in question). It found nothing. Unfortunately that has a very limited meaning because any good virus will be able to prevent detection while it is active. I'm still quite sure these are false positives. Yes this is an old version of InnoSetup, don't remember when I downloaded it, but it was at least a year ago. About digitally signing the installers (and probably the executables): I've never done that. As I understand it, it would require a certificate which 1. Costs money 2. Is valid for a limited time only 3. Then will cost money again to renew The only advantage for me would be to learn how this works.
  7. Dave Nottage

    Android, TWebBrowser & Uploading files

    It seems that setting the WebChromeClient works only when the TWebBrowser is visible. Move your code that creates FWebManager to just after you set VoucherimWebBrowser.Visible to True.
  8. Remy Lebeau

    Finalization section not called unless main form shown

    The TApplication.MainForm property is set by TApplication.CreateForm() only after the first TForm object is fully constructed. So no, the MainForm property will not have been assigned yet in the OnCreate event of any TForm object that is created before, or during, the first call to TApplication.CreateForm().
  9. David Hoyle

    GExperts and virus scanners

    Norton have reported back to me that this is a false positive and they will remove the detection from their signatures.
  10. For Version Info manually delete means inside the dproj file.
  11. Eli M.

    Android, TWebBrowser & Uploading files

    Add the JAR file by going to Projects|Target Platforms|Android|Libraries.. Right click and select Add...
  12. Dalija Prasnikar

    RAD Studio 10.3.3 now available

    Also there are some bugs with that circles... Stepping through debugger activates file modified icon https://quality.embarcadero.com/browse/RSP-26776
  13. Since none of us are mind readers, a description of what you want to achieve could be useful. What action should lead to what effect, and when?
  14. Cristian Peța

    RAD Studio 10.3.3 now available

    About that circles: https://community.idera.com/developer-tools/b/blog/posts/ide-improvements-in-rad-studio-10-3-3
  15. Kryvich

    RAD Studio 10.3.3 now available

    @Gustav Schubert I can confirm: they added a new license exclusively for Delphi CE 10.3.3. Thanks Embarcadero.
  16. Uwe Raabe

    30 % and 35 % discount on Delphi

    Yesterday I got a (real paper!) mail from Embarcadero with this link: https://lp.embarcadero.com/blackweek2019de
  17. Fred Ahrens

    modbus

    Some years ago we needed to implement a Modbus interface for reading data from an automation system. After trying several libraries we ended up using http://www.ozm.cz/ivobauer/modlink/ It's not free but worth the investment.
  18. Primož Gabrijelčič

    FastMM not required?

    FastMM is not required for OmniThreadLibrary. You can use any memory manager. Mandelbrot generates the image on double-click. It does behave strangely, though, I agree. I'll look into that.
  19. Leif Uneus

    modbus

    Look here for an overview of tools and software sources: http://www.modbus.org/tech.php For a Delphi Modbus TCP implementation (free), see: https://github.com/coassoftwaresystems/delphi-modbus
  20. FredS

    RAD Studio 10.3.3 now available

    I read that as 'why can't Andreas fix all their bugs' 🙂
  21. Attila Kovacs

    Finalization section not called unless main form shown

    This info is actually cool. I was never paying attention to it. I was thinking the main form were the first form created any way. But with this, it's enough to write: frmYourFormsNeededToCreateIfAny := TfrmYourFormsNeededToCreateIfAny.Create(Application); frmLogin := TfrmLogin.Create(Application); if frmLogin.DoLogin then Application.CreateForm(TfrmMain, frmMain); Application.Run; or similar no need for Terminate prior to .Run;, no need for ShowMainForm := False, no unnecessary OnCreate() of the main form. however initialization and finalization will run (of course), and prepare, that adding new forms via IDE will screw up your dpr mostly every time.
  22. Dalija Prasnikar

    Delphi 10.3.3 CE IDE issues

    They fiddled around with theming support in 10.3.3 and there were some changes... apparently not all were for the better. Right now, theming is my number one suspect when IDE is misbehaving... and (unfortunately) usually I am right about that
×