http://bugs.winehq.org/show_bug.cgi?id=26638
Summary: Memo can't handle large content Product: Wine Version: 1.3.16 Platform: x86 URL: http://netikka.net/dev/example.exe OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: ocean04@suomi24.fi
http://netikka.net/dev/example.exe
Click button -> it just closes.
I believe Win9x had some max size limit, but not a problem in 2000/XP or later.
Source:
procedure TForm1.Button1Click(Sender: TObject); var i: integer; s: string; begin for i:=0 to 50000 do s:=s+'x'; memo1.text:=s; memo1.SelectAll; memo1.SetFocus; end;