Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 04/29/22 in all areas

  1. Stano

    RAD Studio 11.1 Patch 1

    RAD Studio 11.1 Patch 1 This patch is about 400MB to download. Quality Portal issues addresses by this patch RSP-37880 Can't debug iOS RSP-37760 Using ImageList causes IDE to crash RSP-37733 IDE Access Violation when Inheriting from a Form with a TListView in DynamicAppearance. RSP-37690 GridPanelLayout on form memory leaks on end app -- same if not used at all RSP-37667 Cannot fit requested classes in a single dex file (# methods: 71471 > 65536) RSP-37665 Code Insight broken for classic compiler RSP-37662 Segmentation Fault(11) in SysUtils.Pop on Android64 RSP-37609 PAServer ships with Python 2.7 dependencies - which are no longer available in macOS 12.3 RSP-37408 Delayed flag break Exe's ASLR function RSP-37378 Memory leak RSP-35040 64bit packets in c++ containing delphi code do not run We have also addressed an issue with MongoDB transactions, a FireMonkey memory with the TGPUObjectsPool class var instance (associated with RSP-37690), and a Delphi compiler issue (on some platforms) related to AtomicCmpExchange128.
  2. Pieter Bas Hofstede

    What is proper way to crypt some fields?

    Firebird 4.0 is enhanced with encryption algorithms see firebird-40-language-reference Its up to you to - encrypt/decrypt some fields only at Firebird-side - encrypt/decrypt some fields at your business/data-logic side (so database will have some binary encrypted content) - encrypt the complete database (you will need external plugins for that)
  3. Alexander Sviridenkov

    HTML Parser alternative to MSHTML?

    HCL is layered, HTML and CSS parsers has no dependencies on framework or OS. Class hierarchy is THtNode (htmlpars unit, only RTL) -> THtXMLNode (htxml unit, only RTL) | THtmlNode (htmlpars unit, only RTL) | TStyledHTMLNode (htmlcss unit, only RTL) | TElement (htmldraw unit) | THtDocument (htmldraw unit) THtDocument/TElement use VCL/FMX units for several reasons 1. Native controls in HTML page (edits, combos, etc.) . 2. VCL themes (theme colors support) 3. VCL/FMX canvas (THtDocument can draw on VCL/FMX canvas) But all graphics (canvas classes) is isolated.
  4. Sherlock

    Survey of Delphi Versions in use??

    Well, we are the most important...
  5. Hi @Daniel, Is it possible in this forum to set up a survey of some sort to asses what version(s) of Delphi Forum participants are still using these days? Obviously respondents would need to be able to tick multiple versions. I think it be interesting to see what is still in use 'out there' and rough percentages. Just a thought. Regards, Ian
  6. Alexander Sviridenkov

    HTML Parser alternative to MSHTML?

    Sorry, I forgot to mention that when using chaining, current node should be passed to XPath as parameter to prevent XPath walking up toi root. var D: THtmlNode; N, A: THtNode; begin D := THtmlNode.Create; try D.Parse('<body><h1 id="header1"<a href="a1">First</a><a href="a2">Second</a></h1><h2><div><a href="a3">Third</a></div></h2></body>'); for N in D.XPath('//h1[@id="header1"]') do for A in N.XPath('//a', false, N) do ShowMessage(A['href']); for N in D.XPath('//h2') do for A in N.XPath('//a', false, N) do ShowMessage(A['href']); finally D.Free end; Second parameter is "stop after first found node", third is current root node.
  7. Bill Meyer

    Survey of Delphi Versions in use??

    Active members with an understanding of the relative value of polling data may simply disdain such polls, and not take the time. I can't recall a time when I participated in such a poll.
  8. Uwe Raabe

    How to change the icon of the active tab in TTabControl?

    You can use a local class helper to access the protected method: type TTabControlHelper = class helper for TTabControl procedure UpdateTabImages; end; procedure TTabControlHelper.UpdateTabImages; begin inherited UpdateTabImages; end;
  9. David Heffernan

    Survey of Delphi Versions in use??

    When polling you need a methodology. If you poll the entire population, it's easy. But if you poll just a sample, then you need to choose the sample carefully so that it is representative, and you need to follow up non respondents. There is a lot of science in polling to get meaningful data. A self selecting poll on a site like this will not tell you very much if anything about the overall population. But perhaps you just want to know what active members of this site use. And even if that's what you want, it will be hard to impossible to get accurate data
  10. salvadordf

    Proxy for TEdgeBrowser/Webview2?

    Sorry for the shameless promotion but BriskBard allows you to set any proxy.
  11. Fr0sT.Brutal

    Delphi 10.4.1 Socket Error on IDE Start

    Embarcaderassing
  12. To add - DebuggerDisplayAttribute
  13. Anders Melander

    ANN: Better Translation Manager released

    Resolved. You can download the new version here: http://melander.dk/download/amTranslationManagerInstall-1.3.8055.21506.exe
  14. Thanks! Pretty cool example with TStringList, will use it.
×