Leaderboard
Popular Content
Showing content with the highest reputation on 11/27/19 in Posts
-
Why? There seem to be no changes in the IDE and the compilers that would brake the current IDE Fix Pack 6.4.4.
-
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.
-
It is fixed.
-
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.
-
Debugger in 10.3.3 is useless :'(
Dalija Prasnikar replied to Clément's topic in Delphi IDE and APIs
Tools -> Options -> User Interface -> Editor -> uncheck Preserve line ends -
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.
-
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.
-
Finalization section not called unless main form shown
Remy Lebeau replied to Mark Williams's topic in VCL
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(). -
Norton have reported back to me that this is a false positive and they will remove the detection from their signatures.
-
"Project / Version info / target - all configuration" broken?
Uwe Raabe replied to Yaron's topic in Cross-platform
For Version Info manually delete means inside the dproj file. -
Add the JAR file by going to Projects|Target Platforms|Android|Libraries.. Right click and select Add...
-
Also there are some bugs with that circles... Stepping through debugger activates file modified icon https://quality.embarcadero.com/browse/RSP-26776
-
Create a new Animate from listviewitem PlaceOffset not work How do it ?
Lars Fosdal replied to xorpas's topic in FMX
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? -
[ignore this]
-
About that circles: https://community.idera.com/developer-tools/b/blog/posts/ide-improvements-in-rad-studio-10-3-3
-
@Gustav Schubert I can confirm: they added a new license exclusively for Delphi CE 10.3.3. Thanks Embarcadero.
-
Yesterday I got a (real paper!) mail from Embarcadero with this link: https://lp.embarcadero.com/blackweek2019de
-
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.
-
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.
-
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
-
I read that as 'why can't Andreas fix all their bugs' 🙂
-
Finalization section not called unless main form shown
Attila Kovacs replied to Mark Williams's topic in VCL
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. -
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