[Lazarus] TComboBox with AutoComplete property

2013-06-14 Thread Johan Tu Toit
Good day, I tried the above code on my onCreate procedure: if Sender Is TComboBox then with Sender As TComboBox do begin AutoComplete:= True; end; When I typed any letter on the TComboBox component, the AutoComplete property do not auto select any element on the list. Thanks

Re: [Lazarus] TComboBox with AutoComplete property

2013-06-14 Thread William Oliveira Ferreira
Normally we do that inside a tform.components loop Sorry about english mistakes _ William de Oliveira Ferreira Em 14/06/2013 04:04, "Johan Tu Toit" escreveu: > Good day, > > I tried the above code on my onCreate procedure: > > if Sender Is TComboBox then > with Sender As TComboBox do b

[Lazarus] potential Dec2Numb bug

2013-06-14 Thread Roberto P.
Dear List, I recently had some crashes in a program of mine, whose cause I was able to identify in a potential bug of the Dec2Numb functionor at least, in an undocumented feature. Specifically, if Dec2Numb is passed a negative number, it returns an empty string. It sounds somehow illogical t

Re: [Lazarus] potential Dec2Numb bug

2013-06-14 Thread Reinier Olislagers
On 14-6-2013 12:39, Roberto P. wrote: > Dear List, > > I recently had some crashes in a program of mine, whose cause I was able > to identify in a potential bug of the Dec2Numb functionor at least, > in an undocumented feature. You're posting on the Lazarus list while dec2numb seems to be an

Re: [Lazarus] TComboBox with AutoComplete property

2013-06-14 Thread leledumbo
OnCreate of what? For TForm, the Sender parameter would be... the form itself. Why don't you directly set the property? i.e. ComboBox1.AutoComplete := true; -- View this message in context: http://free-pascal-lazarus.989080.n3.nabble.com/Lazarus-TComboBox-with-AutoComplete-property-tp4031889p40

[Lazarus] Project failure Brook

2013-06-14 Thread Junior
hy all Have you seen this forum thread? http://www.lazarus.freepascal.org/index.php/topic,21175.0.html thanks -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Project failure Brook

2013-06-14 Thread Reinier Olislagers
On 14-6-2013 14:47, Junior wrote: > hy all > > Have you seen this forum thread? > > http://www.lazarus.freepascal.org/index.php/topic,21175.0.html Yes. And it's not nice. -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.

Re: [Lazarus] Lazarus 1.0.10 Release

2013-06-14 Thread dev . dliw
Big thanks for another update of this great piece of software *thumbs up* ! Still there seems to be something wrong with the makefiles. I installed the latest version from sourceforge (lazarus-1.0.10-0.tar.gz) via "make install", and surprisingly the files ended up in /bin and /share. Up to now,

Re: [Lazarus] Lazarus 1.0.10 Release

2013-06-14 Thread Mattias Gaertner
On Fri, 14 Jun 2013 18:38:03 +0200 dev.d...@gmail.com wrote: > Big thanks for another update of this great piece of software *thumbs up* ! > > Still there seems to be something wrong with the makefiles. > I installed the latest version from sourceforge (lazarus-1.0.10-0.tar.gz) via > "make insta

Re: [Lazarus] Gtk3LCL pre-alpha

2013-06-14 Thread William Oliveira Ferreira
All the gods Saudades amem! Good work! _ William de Oliveira Ferreira Em 12/06/2013 15:45, escreveu: > Hi folks, > I've been working on gtk3lcl for about 2 months, sshoot is taken on > Fedora 16 + KDE + gtk3-3.6.4. > Basically all handles are implemented (except TStatusBar, TTrayIcon, > TSpl

Re: [Lazarus] Lazarus 1.0.10 Release

2013-06-14 Thread dev . dliw
Ok, it was my mistake, I mixed up my scripts. > Do you mean /bin and /usr/share? No, indeed it was /share > What do you mean with "Up to now"? Somehow I accidentally used a wrong script which basically did a make sudo make install instead of ('up to now') make all OS_TARGET=linux CPU_TARGET=x

Re: [Lazarus] potential Dec2Numb bug

2013-06-14 Thread Roberto P.
oops, reposted. 2013/6/14 Reinier Olislagers > On 14-6-2013 12:39, Roberto P. wrote: > > Dear List, > > > > I recently had some crashes in a program of mine, whose cause I was able > > to identify in a potential bug of the Dec2Numb functionor at least, > > in an undocumented feature. > > Yo

Re: [Lazarus] Project failure Brook

2013-06-14 Thread silvioprog
2013/6/14 Reinier Olislagers > On 14-6-2013 14:47, Junior wrote: > > hy all > > > > Have you seen this forum thread? > > > > http://www.lazarus.freepascal.org/index.php/topic,21175.0.html > > Yes. And it's not nice. > Hi listers, Osvaldo is taking advantage of the situation to make intrigues he

[Lazarus] TSpinEdit - a modest propoal

2013-06-14 Thread Alejandro Gonzalo
When ReadOnly is True the up/down buttons remain although they don't now do anything.  In that case the number display are should instead occupy the entire component width.  This way there would be a way to display a number directly without first converting to a string.   Not a big thing but now

Re: [Lazarus] TComboBox with AutoComplete property

2013-06-14 Thread Johan Tu Toit
I has many TComboBox components on the forms without the AutoComplete property set to True, so I was looking for the easy way to make it True during the run time. On Fri, Jun 14, 2013 at 2:31 PM, leledumbo wrote: > OnCreate of what? For TForm, the Sender parameter would be... the form > itself.