Jump to content

baoquan.zuo

Members
  • Content Count

    31
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by baoquan.zuo

  1. baoquan.zuo

    Special Offer for Documentation Insight

    Thanks for the kind words! I must admit, the current status of the product is far away from my expectation and I'm really sorry that the new version has not come out in such a long time. However, there is much in-progress working on the product. I hope good things will happen in the upcoming 2022.
  2. baoquan.zuo

    PixelsPerInch property in datamodules and services :-(

    type {$I jedi.inc} {$IFDEF DELPHI28_UP} {$DEFINE HasPixelsPerInch} {$ENDIF} TBaseDataModule = class(TDataModule) {$IFNDEF HasPixelsPerInch} protected // Ignore PixelsPerInch property in TFrame introduced since Delphi 11 procedure DefineProperties(Filer: TFiler); override; procedure IgnorePixelsPerInch(Reader: TReader); {$ENDIF} end; {$IFNDEF HasPixelsPerInch} procedure TBaseDataModule.DefineProperties(Filer: TFiler); begin inherited DefineProperties(Filer); Filer.DefineProperty('PixelsPerInch', IgnorePixelsPerInch, nil, False); end; procedure TBaseDataModule.IgnorePixelsPerInch(Reader: TReader); begin Reader.ReadInteger; end; {$ENDIF} I created a base module to solve this kind of issue
  3. This minor update introduces support for Delphi 11 and fixes some UI issues. To download it, please visit: https://devjetsoftware.com/downloads/
  4. I think `absolute` is treated as a keyword only after (global/local) "variable declarator" (`identifier-list ':' type`), otherwise, it is just an identifier.
  5. We have noticed that Documentation Insight was broken in the latest Delphi 10.3.2 update. Here is the hotfix: http://www.devjetsoftware.com/downloads Thanks for your support!
  6. baoquan.zuo

    ANN: Documentation Insight Hotfix for Delphi 10.3.2

    Thanks for the report! That's really small. There are some HighDPI issues in 10.x. I'll investigate them.
×