Jump to content

Marlon Nardi

Members
  • Content Count

    3
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Marlon Nardi

  • Birthday 01/09/1987

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Marlon Nardi

    java.lang.indexoutofboundsexception

    https://github.com/yangyxd/FMXUI/issues/67#issuecomment-2417073422
  2. Marlon Nardi

    Delphi 12.2 TMEMO - indexoutofbounds

    In practice procedure TTextServiceAndroid.InternalUpdateSelection; var SelStart, SelEnd: Integer; begin if FTextView = nil then Exit; CalculateSelectionBounds(SelStart, SelEnd); SelStart := Min(SelStart, JCharSequenceToStr(FTextView.getText).length); SelEnd := Min(SelEnd, JCharSequenceToStr(FTextView.getText).length); if SelEnd - SelStart > 0 then FTextView.setSelection(SelStart, SelEnd) else FTextView.setSelection(SelStart); end; worked in all tests
  3. Unbelievable, I thought that after updating to Delphi 12.2 this problem would be solved, and yet it continues.
×