Jump to content

Anders Melander

Members
  • Content Count

    2754
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Anders Melander

  1. Anders Melander

    Trying to install JCL but I got error

    I'm not sure but I think it needs to be installed using some sort of installer which then generates the include file based on something, something, whatever, at this point I gave up and deleted everything.
  2. Anders Melander

    Trying to install JCL but I got error

    That's funny. Almost all my problems with JCL and JVCL was caused by the fact that I installed them in the first place. Easily solvable though 🙂
  3. Wow. That's a nice resource!
  4. Anders Melander

    x87 vs SSE single truncation

    Hmm. It seems to be doing odd/even rounding: FastTrunc(0.5) = 0 FastTrunc(1.5) = 2 FastTrunc(2.5) = 2 FastTrunc(3.5) = 4 Ah, it's the fluff. I got the logic mixed up: // Do we need to change anything? TEST EAX, MXCSR_ROUND_DOWN JNZ @SetMXCSR TEST EAX, MXCSR_ROUND_UP JZ @SkipSetMXCSR // Skip expensive LDMXCSR @SetMXCSR: [...] Yet again, the duck provides the answer.
  5. Anders Melander

    What new features would you like to see in Delphi 13?

    Nonsense. Windows developers have been able to create professionally looking applications that for decades without the aid of layout controls. The main reason for amateurish looking applications is amateurish developers. The DevExpress layout control is tightly coupled to the rest of their library but even if it had been possible to separate it from the rest then it would be a terrible idea. Embarcadero does not have the resources or expertise to maintain and evolve something as complex as TdxLayoutControl. Just look at the state of the 3rd party libraries they already have incorporated into Delphi. I wouldn't mind a rudimentary layout control as a part of the VCL but if they can't even get something as simple as TGridPanel to work properly then I think it's better they not even try.
  6. Anders Melander

    Profiler for Delphi

    Probably not but I have never tested with a map file produced by C++ Builder and it looks like the format differs slightly from that of Delphi. The segment/module list of a Delphi map file looks like this: Detailed map of segments 0001:00000000 0000FED4 C=CODE S=.text G=(none) M=System ACBP=A9 0001:0000FED4 00000C9C C=CODE S=.text G=(none) M=SysInit ACBP=A9 0001:00010B70 0000373C C=CODE S=.text G=(none) M=System.Types ACBP=A9 0001:000142AC 000007E8 C=CODE S=.text G=(none) M=System.UITypes ACBP=A9 0001:00014A94 00001E04 C=CODE S=.text G=(none) M=Winapi.Windows ACBP=A9 0001:00016898 000003A8 C=CODE S=.text G=(none) M=System.SysConst ACBP=A9 [...] As you can see there's no path in the module names. If you create a bug report at the map2pdb issue tracker and attach the map file (zipped) I will take a look at it.
  7. Anders Melander

    What new features would you like to see in Delphi 13?

    I think you'll have to wait a bit; It's only just entered puberty. 13 years old....
  8. Anders Melander

    MAP2PDB - Profiling with VTune

    There used to be a link to download previous versions (which is how I managed to use it with Windows 7 at that time), but apparently they've removed that ability: https://community.intel.com/t5/Analyzers/where-can-I-download-an-older-version-vtune/m-p/1561574#M24281 😞
  9. Anders Melander

    MAP2PDB - Profiling with VTune

    VTune only supports Intel hardware as it relies on certain CPU features that are only available on Intel CPUs. At least that what they claim: https://www.intel.com/content/www/us/en/developer/articles/system-requirements/vtune-profiler-system-requirements.html Maybe you can get an older version of VTune to work. For example the current version of VTune doesn't support hardware assisted profiling on my (admittedly pretty old) processor.
  10. Anders Melander

    company search tools question

    https://stackexchange.com/sites
  11. Anders Melander

    company search tools question

    Why are you asking this question in a Delphi programming forum?
  12. Anders Melander

    Better Translation Manager(BTM) and hint texts

    Yes, I guess that could be done; Hook into the application OnShowHint handler and suppress empty hints.
  13. Anders Melander

    Delphi 12.0 TParallel.For performance. Threading.pas issues

    Whoops. I just remembered who wrote that code 🙂
  14. Anders Melander

    Delphi 12.0 TParallel.For performance. Threading.pas issues

    I've heard this too, but it was many, many years ago. Well that explains the complete lack of comments. All their comments are like: // TODO : Document this, FFS! and // TODO : WFT is this shit?
  15. Anders Melander

    Better Translation Manager(BTM) and hint texts

    I'm not sure I understand you. Where would your users specify the hint texts? In BTM? If so you can configure BTM to synthesize properties in case the property "default" mechanism caused them not to be stored. This is already done for the TField.DisplayLabel property which isn't stored in the DFM if its value equals the FieldName property: So you need to specify: The control type as a regular expression. The name of the property to synthesize. Hint in your case. The synthesized value of the property. Probably just an empty string in your case. The problem here is that you probably want this done for lots of different controls so I'm not if this is feasible for you. It would of course best if you could just set the default hint texts in your base language so there's something to translate. Surely, if a control needs a hint text in one language, it needs it in all languages.
  16. Maybe start by revealing who you are, "techdesk"...
  17. Anders Melander

    Determining what driver FireDAC uses for MSSQL connection

    Seems like there's a bug in the documentation. Unfortunate.
  18. Turns out there's good explanation for that 😕 But at least the UI has a "Windows 7" skin.
  19. Hmm. Okay, I'll defer to your expertise then 🙂 - but I can't tell, from looking at the call stack, if the thread was created from Delphi code or from something injected into the process from the outside. I was hoping there was some obvious clue that I had missed. More hmmm. Doesn't really tell me much with regard to the source of the thread.
  20. Nice! I didn't know that one. Too bad about the XP skin though 🙂
  21. There are other ways for a thread to get started, but ignoring that and assuming it was created with CreateThread, one could simply place a breakpoint on the CreateThread import in Winapi.Windows and investigate the call stack as the threads gets crated.
  22. Anders Melander

    Delphi 12.0 TParallel.For performance. Threading.pas issues

    If so then it would probably be better if they implemented a proper rate-limiting mechanism. Looking at the Threading unit, it's rare to see professional code with this few comments. Is there some sort of rule within Embarcadero against commenting the code?
×