Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 01/09/20 in all areas

  1. Darian Miller

    Squint and read: CreateFormFromStings

    Ouch. But at least that one is protected. They can hopefully fix that one without much drama.
  2. I definitely wouldn't, at least not if it is about transferring large amounts of data between programs on the same computer.
  3. A.M. Hoornweg

    Bug in Delphi string behavior?

    IMHO the compiler should throw an error if the same parameter is passed multiple times to the method and one of them is an OUT parameter.
  4. Lars Fosdal

    Bug in Delphi string behavior?

    Would it make sense to have a compiler hint for referencing initialized variables with an out parameter?
  5. Attila Kovacs

    Bug in Delphi string behavior?

    High five!
  6. Dave Nottage

    Squint and read: CreateFormFromStings

    Not that it would affect many users (if any), but in FMX.Edit.Style: protected FNeedChange: Boolean; procedure Change; virtual; { Messages From Model} procedure MMSelLenghtChanged(var AMessage: TDispatchMessageWithValue<Integer>); message MM_EDIT_SELLENGTH_CHANGED; procedure MMSelStartChanged(var AMessage: TDispatchMessageWithValue<Integer>); message MM_EDIT_SELSTART_CHANGED; procedure MMCheckSpellingChanged(var AMessage: TDispatchMessageWithValue<Boolean>); message MM_EDIT_CHECKSPELLING_CHANGED; Spot the typo. The last method name pictured is ironic. Someone should whip up a "spell checker" (of sorts) to see how many of these there are 😉
  7. You don't have time not to read
  8. With include files one can change the inline option and skip all those IFNDEFs, tested with Berlin and up. In this case the include file includes a CustomInclude.inc, which is part of the project. This makes it simple to edit in the IDE as required. /// <remarks> /// NOTE: You can override this in CustomInclude.inc, but it requires a Build /// and won't update the Blue Dots /// </remarks> {$IFNDEF RELEASE} {-$INLINE OFF} // un-comment as needed {$ENDIF RELEASE}
×