Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 12/15/19 in Posts

  1. Can another forum be added in the Delphi Third Party section for DelphiHTMLComponents? It's a popular component set without a native support forum and it would be nice to see it here. Alexander Sviridenkov would be the main point of contact. (support@delphihtmlcomponents.com) https://delphihtmlcomponents.com/ I'm just a happy customer, no other relationship. The support email response rate is really good, but it would be nice to build up a forum of common questions over time. Thanks
  2. dummzeuch

    can you reference unit name in code?

    Shouldn't that be: class procedure TLog.This(const Msg: string); begin LogThis(UnitName, Msg); end;
  3. David Heffernan

    can you reference unit name in code?

    Parsing the detailed map file is probably the easiest way to do this is a large project. If you know you have dependencies on initialization order, I'd solve the problem by removing those dependencies.
  4. Uwe Raabe

    can you reference unit name in code?

    As I said, you can call UnitName on every class declared in that unit. If the unit contains no suitable class declaration in the first place, you can always add one just for this purpose: type TClassInThisUnit = class; initialization LogThis(TClassInThisUnit.UnitName, SomeValue); end.
  5. Angus Robertson

    New Third Party section - DelphiHTMLComponents

    Or a less specific topic to cover HTML components from other developers as well, such as https://github.com/BerndGabriel/HtmlViewer Angus
×