Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 10/02/22 in all areas

  1. Ian Branch

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Perfect. Thank you. Follow up.. Getting this error when I go to close an App I am editing, or trying to close Delphi. Running D11.2. Need to use Task Manager to close Delphi.
  2. Dave Nottage

    Delphi 11.2: Android Debug Monitor no longer works

    Monitor is deprecated, and does not support Java 9, which is what the default JDK (that Delphi installs) uses. There are alternative logcat viewer apps, such as Device Lens (which I created), and there are some others listed here.
  3. Attila Kovacs

    tedit hint not working

    then why are you writing hint in the topic if you are such an eagle eye? otherwise no clue. debug the VCL
  4. Attila Kovacs

    tedit hint not working

    it works the opposite way, it's only shown if the edit is not focused
  5. Yes. TRegistry has never supported REG_MULTI_SZ in any capacity. No read/write methods, no copy/move semantics, nothing. I don't know why, it's been around like forever. Same with REG_QWORD, too. Correct. Which is weird that they waste effort turning the reported data type id into an enum just to turn it back into a data type id immediately afterwards. If they just used the original data type id as-is, there would be no problem. Yes, it could be fixed. It is not just you. https://quality.embarcadero.com/browse/RSP-15275 Yes, you can, actually. Until Embarcadero fixes it properly, you could simply modify the implementation (not the interface) of the System.Win.Registry.pas file (ie, to make TRegistry.MoveKey() not use TRegistry.GetData() since it doesn't report the types correctly), and then add that modified unit to your projects. The compiler will then use your modified unit instead of the original. Note that this only works if you are NOT compiling with Runtime Packages enabled, though.
  6. Serge_G

    FMX and Excel application

    Or you can use Firedac CDATA Excel
  7. rvk

    FMX and Excel application

    If it's just some values you need it might be easier to just extract the .xlsx and read the values from the sheet1.xml. Also changing them (and rezipping them to a new .xlsx) won't be a problem. Adding value might become somewhat more difficult and needs some understanding of the xml structures.
×