http://bugs.winehq.org/show_bug.cgi?id=27562 --- Comment #5 from ocean04(a)suomi24.fi 2011-07-06 09:15:32 CDT --- First progam source: http://delphi-faq.zoxt.net/1313.htm And create component: var Form1: TForm1; s: TACEdit; implementation {$R *.dfm} procedure TForm1.FormShow(Sender: TObject); begin s:=TACEdit.create(form1); s.parent:=form1; s.Width:=200; s.Top:=50; s.Left:=50; s.ACStrings.Add('Zero'); s.ACStrings.Add('First'); s.ACStrings.Add('Second'); s.ACStrings.Add('Third'); s.ACStrings.Add('Fourth'); s.ACStrings.Add('Fifth'); s.ACStrings.Add('Sixth'); s.ACStrings.Add('stest'); end; -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.