Re: [Lazarus] [Off Topic] Guys, you know the news?

2014-05-21 Thread William Oliveira Ferreira
​​
This thread is going as far than I can think...

What I can not understand is the problem with an opensource project...


2014-05-21 6:33 GMT-03:00 Junior :

> Not true I do not have two names, merely posted an off-topic.
>
> Em 21-05-2014 06:18, Mark Morgan Lloyd escreveu:
>
>  leledumbo wrote:
>>
>>> This message (spam) is from the same author with dual identity, a.k.a

>>> Robson.
>>>
>>> I received insults in pvt. This is the famous "hue hue br br br"
>>> (http://knowyourmeme.com/memes/huahuehuahue). Therefore,
>>> Robson/Lazarus.linux/Junior.linux/others is just a flamer, who that
>>> delights
>>> causing flames/trolls in Delphi/Lazarus/Linux lists.
>>>
>>> Could it be the same shit as this:
>>> https://github.com/leledumbo/QTemplate/issues/2 ?
>>>
>>
>> OTOH it was Junior who started the thread about timing. Which can be read
>> as a hint that he can ask for help or he can troll, but not both.
>>
>>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] What better way to use the mailing list?

2014-03-20 Thread William Oliveira Ferreira
I'm receiving all messages. Maybe spam?


2014-03-20 17:19 GMT-03:00 Leonardo M. Ramé :

> On 2014-03-20 15:50:28 -0300, silvioprog wrote:
> > Hello,
> >
> > I'm not receiving all messages from the Lazarus list. Some time ago it
> > worked perfectly fine for me, but now I receive only few messages, and
> > after long time. There are messages that I see only after accessing the
> > topic link. They simply don't arrive on my email. :/
> >
> > Is there any way to receive ALL messages from the list, in full, and in
> > real time as they are sent by the authors?
> >
> > Thank you!
> >
>
> Are you sure your ISP is not filtering or something?, what MUA do you
> use?.
>
> --
> Leonardo M. Ramé
> http://leonardorame.blogspot.com
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Não encontra o parametro?

2014-03-04 Thread William Oliveira Ferreira
Hi Daniel,

That was exactly the problem. This was already solved.

Thanks for your help.


Em 4 de março de 2014 15:21, Daniel Erles  escreveu:

> Intenta con esta linea:
>
> sql_Query.ParamByName('PCodigo').AsInteger := Codigo;
>
> sin ":"
>
>
>
> 2014-03-03 15:58 GMT-04:00 William Oliveira Ferreira <
> bdexterholl...@gmail.com>:
>
>> Olá lista,
>>
>>  eu tenho um código mamão com açúcar aqui que eu não consigo entender por
>> que cargas d'água não encontra o parâmetro da SQL. Alguém quer chutar algo?
>>
>> var
>>   sql_Query : TSQLQuery;
>> begin
>>   Result := False;
>>   sql_Query := TSQLQuery.Create(nil);
>>   sql_Query.DataBase := Self._Conexao;
>>   sql_Query.Transaction := TSQLTransaction(Self._Conexao.Transaction);
>>
>>   sql_Query.SQL.Clear;
>>   if TSQLTransaction(Self._Conexao.Transaction).Active then
>> TSQLTransaction(Self._Conexao.Transaction).EndTransaction;
>>
>>   sql_Query.SQL.Add('DELETE FROM loc_clientes');
>>   sql_Query.SQL.Add('WHERE cli_codigo = :PCodigo');
>>
>>   sql_Query.ParamByName(':PCodigo').AsInteger := Codigo;
>>
>>   try
>> sql_Query.ExecSQL;
>>   except
>> raise Exception.Create('Erro ao excluir o cliente! [ID: ' +
>> IntToStr(Codigo) + ']');
>>   end;
>>
>> 
>>
>> A mensagem de erro:
>>
>> Parameter ":PCodigo" not found
>>
>>
>> Vira e mexe esta mensagem me assombra...
>>
>>
>> ...Digo isto porque em outros trechos não ocorre.
>>
>> --
>> 
>> William de Oliveira Ferreira
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Não encontra o parametro?

2014-03-03 Thread William Oliveira Ferreira
Exactly Flávio. That ':' shouldn't be there...


Thanks...


Em 3 de março de 2014 17:10, Flávio Etrusco escreveu:

> 2014-03-03 16:58 GMT-03:00 William Oliveira Ferreira <
> bdexterholl...@gmail.com>:
> > Olá lista,
> >
> > eu tenho um código mamão com açúcar aqui que eu não consigo entender por
> que
> > cargas d'água não encontra o parâmetro da SQL. Alguém quer chutar algo?
> >
> > var
> >   sql_Query : TSQLQuery;
> > begin
> >   Result := False;
> >   sql_Query := TSQLQuery.Create(nil);
> >   sql_Query.DataBase := Self._Conexao;
> >   sql_Query.Transaction := TSQLTransaction(Self._Conexao.Transaction);
> >
> >   sql_Query.SQL.Clear;
> >   if TSQLTransaction(Self._Conexao.Transaction).Active then
> > TSQLTransaction(Self._Conexao.Transaction).EndTransaction;
> >
> >   sql_Query.SQL.Add('DELETE FROM loc_clientes');
> >   sql_Query.SQL.Add('WHERE cli_codigo = :PCodigo');
> >
> >   sql_Query.ParamByName(':PCodigo').AsInteger := Codigo;
> >
> >   try
> > sql_Query.ExecSQL;
> >   except
> > raise Exception.Create('Erro ao excluir o cliente! [ID: ' +
> > IntToStr(Codigo) + ']');
> >   end;
> >
> > 
> >
> > A mensagem de erro:
> >
> > Parameter ":PCodigo" not found
> >
> >
> > Vira e mexe esta mensagem me assombra...
> >
> >
> > ...Digo isto porque em outros trechos não ocorre.
> >
> > --
>
> I believe ':' isn't part of the parameter name? (i.e. you're not
> supposed to include it when invoking ParamByName).
>
> Regards,
> Flávio
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Não encontra o parametro?

2014-03-03 Thread William Oliveira Ferreira
​Sorry Guy, I thought i was sending to a brazilian list... =(
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Não encontra o parametro?

2014-03-03 Thread William Oliveira Ferreira
Olá lista,

eu tenho um código mamão com açúcar aqui que eu não consigo entender por
que cargas d'água não encontra o parâmetro da SQL. Alguém quer chutar algo?

var
  sql_Query : TSQLQuery;
begin
  Result := False;
  sql_Query := TSQLQuery.Create(nil);
  sql_Query.DataBase := Self._Conexao;
  sql_Query.Transaction := TSQLTransaction(Self._Conexao.Transaction);

  sql_Query.SQL.Clear;
  if TSQLTransaction(Self._Conexao.Transaction).Active then
TSQLTransaction(Self._Conexao.Transaction).EndTransaction;

  sql_Query.SQL.Add('DELETE FROM loc_clientes');
  sql_Query.SQL.Add('WHERE cli_codigo = :PCodigo');

  sql_Query.ParamByName(':PCodigo').AsInteger := Codigo;

  try
sql_Query.ExecSQL;
  except
raise Exception.Create('Erro ao excluir o cliente! [ID: ' +
IntToStr(Codigo) + ']');
  end;



A mensagem de erro:

Parameter ":PCodigo" not found


Vira e mexe esta mensagem me assombra...


...Digo isto porque em outros trechos não ocorre.

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] kzdesktop...

2014-02-10 Thread William Oliveira Ferreira
Yeah, Flavio. I'm Brazilian too. As you said, for large audience, is good
to it in english but it's a developer option and if he didn't make this
choice, well, bing translator on it. Maybe someone could offer tor help
translating it to english but he must accept this help.


2014-02-07 12:31 GMT-02:00 Flávio Etrusco :

> On Fri, Feb 7, 2014 at 12:20 PM, William Oliveira Ferreira
>  wrote:
> >
> > 2014-02-07 10:03 GMT-02:00 Michael Schnell :
> >>
> >> On 02/07/2014 12:51 PM, William Oliveira Ferreira wrote:
> >>>
> >>> KZDesktop could be followed by here...
> >>>
> >>>
> http://www.raphaelz.com.br/page/KZDesktop-Uma-interface-robusta-para-seu-Lazarus!.aspx
>
> Yeah. That's where I got the information. And it's even more outdated
> than the SVN, it just contains the first announcement. And it's ironic
> that its advertised as a robust GUI for Lazarus :)
>
> >> IMHO, non-English technical websites are very inappropriate :-(
> >>
> >> -Michael
> >
> > But it's a brazillian project...
> >
>
> So what? FreePascal started (AFAICT) mostly as a German project.
> If you want a large audience you have to do English.
>
> -Flávio
> PS. I'm Brazilian.
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] kzdesktop...

2014-02-07 Thread William Oliveira Ferreira
But it's a brazillian project...


2014-02-07 10:03 GMT-02:00 Michael Schnell :

>  On 02/07/2014 12:51 PM, William Oliveira Ferreira wrote:
>
>  KZDesktop could be followed by here...
>
> http://www.raphaelz.com.br/page/KZDesktop-Uma-interface-robusta-para-seu-Lazarus!.aspx
>
>
> IMHO, non-English technical websites are very inappropriate :-(
>
> -Michael
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] kzdesktop...

2014-02-07 Thread William Oliveira Ferreira
KZDesktop could be followed by here...
http://www.raphaelz.com.br/page/KZDesktop-Uma-interface-robusta-para-seu-Lazarus!.aspx


2014-02-06 17:29 GMT-02:00 Junior :

> ok, thank you.
>
> As the project anchordockingdsgn, an update is expected to add the form in
> the IDE, as we have in Delphi?
> At the moment the form is separated from the IDE.
>
>
> Em 06-02-2014 16:10, Flávio Etrusco escreveu:
>
>  On Thu, Feb 6, 2014 at 4:40 PM, Junior  wrote:
>>
>>> Hello to all.
>>>
>>>
>>> The kzdesktop project was discontinued?
>>>
>>> thanks
>>>
>> Raphael never posted to this list and no Lazarus developer contributed
>> to kzdesktop, so what one can say is that there are no commits in the
>> public svn repository since 2012. I just noticed there's zip uploaded
>> in September of '13, however the files inside still have '12
>> timestamps.
>>
>> -Flávio
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus Second Release Candidate, 1.2RC2

2014-01-18 Thread William Oliveira Ferreira
as I said, I'm just a user of the feature, I don't really know what
implications can came with this change. Today, if you change debug profile
to another that doesn't generate that file, the compiler doesn't
ignore it?Here, I tested (Lazarus 1.0.14 r43446 FPC 2.6.2
i386-win32-win32/win64)
with an old project that have 2 build modes and one of them doesn't
generate any debug symbols. Lazarus has just ignored my break points.
Lazarus doesn't removed my debug file. Could this be a hint that external
debug symbols could be used without issues?


2014/1/18 Reinier Olislagers 

> On 18/01/2014 14:18, William Oliveira Ferreira wrote:
> > 2014/1/16 Martin mailto:laza...@mfriebe.de>>
> >
> > What happens, if you have an external info file, and rebuild the exe
> > (but without creating new debug info)? Will the wrong info be
> > applied? Or will it be ignored?
> > ​​
> >
> > ​​
> >
> > ​​
> > ​well, i think this issue affects expecially the IDE users and I
> > wondering that lazarus always make their way to rebuild that file​
>
> I don't quite understand your answer.
> AFAIU, Martin is describing this scenario:
> 1. You build a project with external gdb info file
> 2. You change the settings (or choose a different build mode) so it does
> not generate an external gdb info file, but do not remove the existing
> gdb info file
> 3. You change the code and recompile, generating a new executable (and
> now the gdb info file and executable are out of sync)
>
> Are you saying the gdb info file will be ignored? If so, that is good to
> know.
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus Second Release Candidate, 1.2RC2

2014-01-18 Thread William Oliveira Ferreira
2014/1/16 Martin 

> What happens, if you have an external info file, and rebuild the exe (but
> without creating new debug info)? Will the wrong info be applied? Or will
> it be ignored?
> ​​
>
> ​​

​​
​well, i think this issue affects expecially the IDE users and I wondering
that lazarus always make their way to rebuild that file​


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus Second Release Candidate, 1.2RC2

2014-01-16 Thread William Oliveira Ferreira
Hi Barth,

I use a external debug file and never noticed any issue. Can you tell
something about it? I'm just curious and I wanna know that to do when
happens...


2014/1/16 Sven Barth 

> On 16.01.2014 07:45, Jürgen Hestermann wrote:
>
>>
>> Am 2014-01-15 23:40, schrieb William Oliveira Ferreira:
>>
>>> I think is much better change the default behavior to generate a
>>> external debug file but i don't know if it has any consequence...
>>>
>>>
>> Definitely!
>> I also wondered why this is *not* the default.
>> What are the reasons?
>>
>
> Buggy GDB? (at least that's what I would think is the most plausible
> reason ^^)
>
> Regards,
> Sven
>
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus Second Release Candidate, 1.2RC2

2014-01-15 Thread William Oliveira Ferreira
I think is much better change the default behavior to generate a external
debug file but i don't know if it has any consequence...


2014/1/15 Martin 

> On 15/01/2014 10:43, Kostas Michalopoulos wrote:
>
>> Is it really necessary to mention exe size in the Windows installer?
>> It looks very weird that from everything about Lazarus this has to be
>> mentioned in the installer.
>>
>> Maybe a "tips" or "faq" or something in a "welcome" screen that
>> answers this and other "first" questions ("how do i enabled opengl?",
>> "how do i use a single window?", etc) should be better? (of course
>> such a welcome screen needs to be coded first :-P
>>
>>
>
> A "tip of the day" or even "tip" depending on action, that shows useful
> info within the IDE itself would be great. If someone would write the
> code... Right now, we do not have this code, and we do not have anybody who
> writes it.
>
> So displaying something in the installer was the easiest option. "Exe size
> on windows" is (for win users) the single most often asked question. And
> for some reason a lot of people do not read the FAQ. So this seemed the
> best solution.
>
> It was already put in 2nd place, to avoid starting with a "problem". First
> is the "what is Lazarus" (not very useful, in the installer, since a person
> running the installer will already have an idea).
>
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] New NumbersOnly property for TCustomEdit (r43678)

2014-01-13 Thread William Oliveira Ferreira
+1


2014/1/13 Graeme Geldenhuys 

> On 2014-01-12 12:47, Michael Van Canneyt wrote:
> >>
> >> Okay, that's a good stance compared to the Free Pascal team.
> >
> > Eh ?
> > I don't see how the stance of the FPC team differs ?
>
>
> The Lazarus team seems to want to be able to convert and compile Delphi
> code. Only in one direction.
>
> The Free Pascal team wants Delphi compatibility in both directions.
> Moving from Delphi to FPC, and then still keep the ability to move back
> to Delphi. The second part is ridiculous as far as I'm concerned - it
> limits FPC too much in what it can do, change or improve.
>
>
> Regards,
>   - Graeme -
>
> --
> fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
> http://fpgui.sourceforge.net/
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Changing tempdir via startup parameters

2013-12-02 Thread William Oliveira Ferreira
thanks, i'll try it...


2013/12/2 Mattias Gaertner 

> On Mon, 2 Dec 2013 14:29:37 -0200
> William Oliveira Ferreira  wrote:
>
> > Hi List,
> >
> > I can use --pcp=blablabla to make lazarus use a different config file,
> but,
> > i wanna change a special setting: 'Temp Dir'. Is it possible?
>
> The IDE uses the TEMP environment variable by default for the test
> directory. So you can set the environment variable.
> Or you can set the Test directory to "$ENV(LAZTEMP)" without the
> quotes and then set the LAZTEMP environment variable.
> For example under Unix with bash:
>
> export LAZTEMP=~/tmp && ./lazarus
>
>
> > I wanna install Lazarus on a PenDrive and develop on any windows machine
> i
> > plug it and i don't wanna use my pendrive as tempdir..
>
>
> Mattias
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Changing tempdir via startup parameters

2013-12-02 Thread William Oliveira Ferreira
Hi List,

I can use --pcp=blablabla to make lazarus use a different config file, but,
i wanna change a special setting: 'Temp Dir'. Is it possible?

I wanna install Lazarus on a PenDrive and develop on any windows machine i
plug it and i don't wanna use my pendrive as tempdir..

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Centered elements in autosize enabled panel. Possible?

2013-11-10 Thread William Oliveira Ferreira
I think you could also use anchors
Em 09/11/2013 19:46, "Valdas Jankūnas"  escreveu:

> 2013.11.09 22:52, Avishai rašė:
>
>> OK.  I tried putting 2 Labels Align:= alLeft.  For both Labels I set
>> BorderSpacing Left and Right := 10 and Layout := tlCenter.  Then I set
>> Panel.AutoSize := True.  It looks like it does what you want.
>>
>
> It works! Even with autosized Buttons or Edits.
>
> Thanks!
>
>
> --
>   Valdas Jankūnas
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] fpc 2.6.3 - download

2013-11-07 Thread William Oliveira Ferreira
use SVN and build it for you, but, is it really necessary?


2013/11/7 Junior 

> ok, thanks
>
> Em 07-11-2013 19:34, Marco van de Voort escreveu:
>
>  On Thu, Nov 07, 2013 at 07:20:58PM -0300, Junior wrote:
>>
>>> where to download fpc version 2.6.3?
>>>
>>> I use Linux Debian 32 bits.
>>>
>>> "fpc**.deb"
>>>
>> 2.6.3 is not a release version, but a development version, and generally
>> doesn't come prepackaged.
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Error when debugging...

2013-11-07 Thread William Oliveira Ferreira
Sorry, I didn't checked that option, I've changed 'Execution Level' to
'require Administrator'


2013/11/7 William Oliveira Ferreira 

>
> ​Hi list,
>
> first of all, sorry about any language mistakes. Low pratice, low
> knowledge, but I'll try to keep away from web translators...
>
> I'm building a little app that clean pen-drivers after some malware's
> activities...
>
>
> After check 'UI access' on 'Project Options', debuger hangs and my
> application doesn't run inside Lazarus.
>
> Should I open a mantis issue?
> ​
>
> --
> 
> William de Oliveira Ferreira
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Error when debugging...

2013-11-07 Thread William Oliveira Ferreira
​Hi list,

first of all, sorry about any language mistakes. Low pratice, low
knowledge, but I'll try to keep away from web translators...

I'm building a little app that clean pen-drivers after some malware's
activities...


After check 'UI access' on 'Project Options', debuger hangs and my
application doesn't run inside Lazarus.

Should I open a mantis issue?
​

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] IDE Lazarus - Position start the form

2013-10-05 Thread William Oliveira Ferreira
{$R cristalBall.lfm}

What form? Form Designer?


2013/10/5 Junior 

> hi
>
> Initialization Lazarus IDE, the positioning of the form (x, y) would not
> be better with respect to the code editor window?
>
> The Delphi behaves in this way.
>
> Only an opinion. :)
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Tag on Lazarus Wiki

2013-09-18 Thread William Oliveira Ferreira
I tried your tip but not served as was expected because it creates a box for
each TAG used in code. If I put each reserved word or function within this
tag, each word is in a box with dotted outline. This tag you suggested
serves for code blocks, but not when a reserved word is inserted into a
sentence and expected a special highlight for the word


2013/9/18 William Oliveira Ferreira 

> ow, I think I got now, sorry.
>
>
> 2013/9/18 Reinier Olislagers 
>
>> On 18/09/2013 12:33, William Oliveira Ferreira wrote:
>> > Go to line 212 of the page's source
>> >
>> > **AddArray**, AddNull,
>> AddX and AddY functions, SetText
>> procedure
>> >
>> > Every function or reserverd word is marked with that tag...
>>
>> I'd suggest you change that to use  (the same tag used
>> for about every other code sample on the wiki)...
>>
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>
>
>
> --
> 
> William de Oliveira Ferreira
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Tag on Lazarus Wiki

2013-09-18 Thread William Oliveira Ferreira
ow, I think I got now, sorry.


2013/9/18 Reinier Olislagers 

> On 18/09/2013 12:33, William Oliveira Ferreira wrote:
> > Go to line 212 of the page's source
> >
> > **AddArray**, AddNull,
> AddX and AddY functions, SetText
> procedure
> >
> > Every function or reserverd word is marked with that tag...
>
> I'd suggest you change that to use  (the same tag used
> for about every other code sample on the wiki)...
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Tag on Lazarus Wiki

2013-09-18 Thread William Oliveira Ferreira
Go to line 212 of the page's source

**AddArray**, AddNull,
AddX and AddY functions,
SetText procedure

Every function or reserverd word is marked with that tag...


2013/9/17 Bart 

> On 9/17/13, William Oliveira Ferreira  wrote:
> >
> http://wiki.freepascal.org/Lazarus_1.2.0_release_notes#TComponentPropertyEditor_behavior_was_changed
> )
> > on Google Chrome and I saw that, when a text is in  tag, the text
>
> I don't see any 
> Bart
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Tag on Lazarus Wiki

2013-09-17 Thread William Oliveira Ferreira
Hi List!

Could someone try to ajust a little thing?

Well, I was reading this link (
http://wiki.freepascal.org/Lazarus_1.2.0_release_notes#TComponentPropertyEditor_behavior_was_changed)
on Google Chrome and I saw that, when a text is in  tag, the text
size becames so small. On Firefox it doesn't happens. Adding a
font-size:1.2em let the font at the same size of the whole text.
On Firefox, the text is perfect.

Maybe is a bug on theme but the diference seems to be about 0.2em on font
size that is not directly set and the CSS data seems to be generated by a
load.php, so, I don't know what line should be changed.
-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus scattered windows

2013-09-02 Thread William Oliveira Ferreira
Can be saved *, but manually and, if you wanna save to a backup file,
first, create a blank text file then overwrite it.

* At least, the last version i've used on linux (1.0.2)


2013/9/2 Xiangrong Fang 

> You may try anchordocking, although that also has some bugs, but are small
> ones, (e.g. window layout cannot be saved).
>
>
>
> 2013/9/2 Michael Van Canneyt 
>
>>
>>
>> On Mon, 2 Sep 2013, Martin wrote:
>>
>>  On 31/08/2013 17:13, Jürgen Hestermann wrote:
>>>
 I am working with Windows XP and
 Lazarus is driving me nuts with its multiple window interface.

 Very often, when I use Alt+TAB to switch back to Lazarus I only see
 the source editor but none of the other windows (object inspector,
 message window, Lazarus main window, etc.).

>>>
>>> So how exactly do you not see the other windows? Or more to the point:
>>> Why?
>>>
>>> - Was Lazarus minimized before, and only one Window (e.g. SourceEdit was
>>> restored)?
>>> - Were the windows hidden behind other apps, and are still (so they were
>>> not brought to foreground?
>>> - Or ?
>>>
>>> About hidden windows:  Take note, which window was active before you
>>> switched away from the IDE. Is there a pattern?
>>> e.g for me, using the mouse, not tab:
>>> - if I click the main-IDE bar, all windows come to foreground.
>>>
>>
>> On Linux, kubuntu, kwin WM, this is definitely not the case. This is by
>> far the most annoying 'bug' in Lazarus on Linux.
>>
>> Something one learns to live with :)
>>
>> Michael.
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Res: Re: bug in open package file

2013-08-29 Thread William Oliveira Ferreira
here i got 404


2013/8/28 Kostas Michalopoulos 

> Try VLC. The video is quite clear about his steps.
>
>
> On Wed, Aug 28, 2013 at 9:20 PM, Mattias Gaertner <
> nc-gaert...@netcologne.de> wrote:
>
>>
>> > Junior  hat am 28. August 2013 um 06:07
>> geschrieben:
>> >
>> >
>> > Lazarus 1.1 r42508M FPC 2.6.2 i386-linux-gtk 2
>> >
>> > > r42508M <
>> >
>> > See:
>> > http://www.meulinux.com.br/lazarus.avi
>>
>> It does not play here.
>>
>> Maybe you can use words?
>>
>> Mattias
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] When TException is distroyed?

2013-06-30 Thread William Oliveira Ferreira
Well, good to know this. I never read something about...

Thanks, Florian


2013/6/30 Florian Klaempfl 

> Am 29.06.2013 23:59, schrieb William Oliveira Ferreira:
>
>  Just a curiosity question: if we use try exception, the system auto
>> create a texception object, but, when it is destroyed?
>>
>
> When leaving the except block handling the exception (if
> AcquireExceptionObject has not been called).
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus<http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus>
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] When TException is distroyed?

2013-06-29 Thread William Oliveira Ferreira
Just a curiosity question: if we use try exception, the system auto create
a texception object, but, when it is destroyed?

_
William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] IDE window Unit Dependencies

2013-06-26 Thread William Oliveira Ferreira
Great!

_
William de Oliveira Ferreira
Em 25/06/2013 07:22, "Mattias Gaertner" 
escreveu:

> Hi all,
>
> There is now an IDE window showing what units uses a unit.
>
> See here for more details:
> http://wiki.lazarus.freepascal.org/IDE_Window:_Unit_dependencies
>
> Mattias
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


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,
> TSplitter and TPopupMenu(main menu works))
> ,but of course most of them are partially implemented.
> Paint engine is cairo which is in real pre-alpha implementation stage,but
> you can see TLabel, TPaintBox and eg. glyph on TBitBtn on screenshoot.
> Mouse/Wheel events works on all handles, a lot of HWND based routines in
> gtk3winapi are implemented, capturing works, focus works.
> gtk3lcl code is implemented with gtk3bindings http://wiki.freepascal.org/*
> *Gtk%2B3  provided by Andrew Haines,
> also it looks much simpler than gtk2lcl since I've used another approach to
> implement widgetset. eg. with gtk2 TWinControl.Handle = PGtkWidget, with
> gtk3 TWinControl.Handle = TGtk3Widget - yes TObject with
> TGtk3Widget().Widget as connection to Gtk3 and complete inheritance eg.:
> TGtk3Memo, TGtk3ListBox, TGtk3ComboBox, TGtk3CustomControl, TGtk3Window.
> I hope that I'll commit gtk3lcl alpha into trunk till the end of month.
>
>
> zeljko
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


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 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 in advance.
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] New competition for Lazarus

2013-06-01 Thread William Oliveira Ferreira
Internet Brazil we have a close one: shot on own foot

_
William de Oliveira Ferreira
Em 01/06/2013 15:08, "Vincent Snijders" 
escreveu:

>
>
>> FWIW I think Lazarus IDE development could do with a shot in the arm.
>>
>> What does that mean?
>
> Vincent
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] New competition for Lazarus

2013-06-01 Thread William Oliveira Ferreira
Internet Brasil we have a close one: shot on own foot

_
William de Oliveira Ferreira
Em 01/06/2013 15:08, "Vincent Snijders" 
escreveu:

>
>
>> FWIW I think Lazarus IDE development could do with a shot in the arm.
>>
>> What does that mean?
>
> Vincent
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] New competition for Lazarus

2013-05-30 Thread William Oliveira Ferreira
Seems to be in a good path. They're fork Will be open source?

_
William de Oliveira Ferreira
Em 30/05/2013 07:59, "Graeme Geldenhuys"  escreveu:

> Hi,
>
> I just saw this thread. The PilotLogic guys (creators of the CodeTyphoon
> project) has finally decided to fork Lazarus IDE and go their own route.
> Here are some "early days" screenshots.
>
>
> http://www.pilotlogic.com/sitejoom/media/kunena/attachments/63/OpenIntiana64_2013-05-27.jpg
>
>
> http://www.pilotlogic.com/sitejoom/media/kunena/attachments/63/Screenshot_2013-05-28.jpg
>
>
> They plan to add multi-architecture / dual personalities (32-bit &
> 64-bit executables) on a single system, improved cross-compile support
> with easy switching and indicator, C/C++ support, support more platforms
> etc.
>
>
> For the full thread, here is the link.
>
>
>
> http://www.pilotlogic.com/sitejoom/index.php/forum/ct-lab-news/2509-ct-4-30-lab-new-ide?limitstart=0&start=24
>
>
> Regards,
>   - Graeme -
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Differences between TSQLTransaction and TMySQL55Transaction

2013-05-09 Thread William Oliveira Ferreira
Thanks for the explanation! Shouldn´t it be marked as deprecated?


2013/5/9 Ludo Brands 

> On 05/09/2013 12:44 AM, William Oliveira Ferreira wrote:
> > Hi list,
> >
> > I´ve noticed some minutes ago that exists a extra transaction class
> > related for MySQL 5.5. What are the major differences between these
> classes?
> >
> > thanks...
> >
>
> TMySQL55Transaction was an attempt at abstracting the MySQL transaction
> handle. It is not used anymore. See mysqlconn.ini:
>
> type
>   TMySQL55Transaction = Class(TTransactionName);
>
>   TTransactionName = Class(TSQLHandle)
>   protected
>   end;
>
> ...
>
> function TConnectionName.AllocateTransactionHandle: TSQLHandle;
> begin
> //  Result:=TTransactionName.Create;
>   Result := nil;
> end;
>
> Ludo
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Differences between TSQLTransaction and TMySQL55Transaction

2013-05-08 Thread William Oliveira Ferreira
Hi list,

I´ve noticed some minutes ago that exists a extra transaction class related
for MySQL 5.5. What are the major differences between these classes?

thanks...

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Changing AnchordDocking Layout via command line

2013-05-06 Thread William Oliveira Ferreira
Mattias,

I created a bug report 'cos there is a problem that i think should be fixed
before this feature...
http://bugs.freepascal.org/view.php?id=24394


2013/5/6 William Oliveira Ferreira 

> done:
> http://bugs.freepascal.org/view.php?id=24392
>
>
> 2013/5/6 Mattias Gaertner 
>
>> On Sat, 4 May 2013 08:55:15 -0300
>> William Oliveira Ferreira  wrote:
>>
>> > Hi List!
>> >
>> >
>> > Does it possible to change which layout file anchordocking will load via
>> > command line?
>> > I'm asking this 'cos i have a laptop with 1366x768 screen resolution
>> and a
>> > monitor with a fullhd resolution. A layout for the notebook screen
>> doesn't
>> > fit good at my monitor.
>>
>> Good idea, please create a feature request.
>>
>> Mattias
>>
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>
>
>
> --
> 
> William de Oliveira Ferreira
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Changing AnchordDocking Layout via command line

2013-05-06 Thread William Oliveira Ferreira
done:
http://bugs.freepascal.org/view.php?id=24392


2013/5/6 Mattias Gaertner 

> On Sat, 4 May 2013 08:55:15 -0300
> William Oliveira Ferreira  wrote:
>
> > Hi List!
> >
> >
> > Does it possible to change which layout file anchordocking will load via
> > command line?
> > I'm asking this 'cos i have a laptop with 1366x768 screen resolution and
> a
> > monitor with a fullhd resolution. A layout for the notebook screen
> doesn't
> > fit good at my monitor.
>
> Good idea, please create a feature request.
>
> Mattias
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Changing AnchordDocking Layout via command line

2013-05-04 Thread William Oliveira Ferreira
Hi List!


Does it possible to change which layout file anchordocking will load via
command line?
I'm asking this 'cos i have a laptop with 1366x768 screen resolution and a
monitor with a fullhd resolution. A layout for the notebook screen doesn't
fit good at my monitor.

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Dumping mysql databases

2013-04-04 Thread William Oliveira Ferreira
Is possible to dump a MySQL Database with sqlDB?

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus 1.0.6 Release

2013-02-07 Thread William Oliveira Ferreira
Which version will comes with a newer FPC version?

2013/2/6 Giuliano Colla 

> On 02/04/2013 03:36 PM, Mattias Gaertner wrote:
>
>> The Lazarus team is glad to announce the release of Lazarus 1.0.6.
>>
>
> Whoever is interested may download a more broadly compatible version of
> the rpm's from:
>
> http://www.bononiadocta.it/**Lazarus/
>
> They're repackaged in order to be compatible with RHEL 5.x, CentOs 5.x and
> Suse Enterprise 10.x
> which do not support the compression format of the fpc rpm's.
>
> Giuliano
>
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Can't access many tis with my account

2013-01-30 Thread William Oliveira Ferreira
Hi.  Could someone check what's happening with my mantis login? It doesn't
accept my password. If I try to recover my password, it doesn't recognize
my email address. My login is bdexterholland.
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] TPanel doesn´t change color if parent = TTabSheet on DesignTime

2013-01-30 Thread William Oliveira Ferreira
Hi, a friend o'mime created a project and he dropped a panel inside a tab
sheet. He also changed the panel's color. O runtime panel use the setted
color but on design time,  it always use parent's color. Is it a case of
bug report?

Sample code: http://woliveiraferreira.com.br/downloads/teste.zip
-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus books

2013-01-25 Thread William Oliveira Ferreira
oh yeah, now i got ...

2013/1/25 Sven Barth 

>  Am 25.01.2013 12:09, schrieb William Oliveira Ferreira:
>
>
>
> 2013/1/25 Michael Schnell 
>
>>  On 01/25/2013 06:59 AM, Héctor F. Fiandor Rosario wrote:
>>
>>
>> I have not dissabled the Delphi5 installation, and often I consult the
>> Delphi´s help  for some details.
>>
>>
>>  Same here (but using the once free "Turbo Delphi" aka D7).
>>
>> But I did not dare to write this (again) ;-) .
>>
>> -Michael
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>>
> Turbo Delphi was Delphi 2006, not Delphi 7...
>
> I have the feeling the "" around "Turbo Delphi" are there for a reason...
>
> Regards,
> Sven
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus books

2013-01-25 Thread William Oliveira Ferreira
2013/1/25 Michael Schnell 

>  On 01/25/2013 06:59 AM, Héctor F. Fiandor Rosario wrote:
>
>
> I have not dissabled the Delphi5 installation, and often I consult the
> Delphi´s help  for some details.
>
>
> Same here (but using the once free "Turbo Delphi" aka D7).
>
> But I did not dare to write this (again) ;-) .
>
> -Michael
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
Turbo Delphi was Delphi 2006, not Delphi 7...

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] My Lazarus logo using Inkscape

2013-01-09 Thread William Oliveira Ferreira
2013/1/9 Hans-Peter Diettrich 

> William Oliveira Ferreira schrieb:
>
>>
>>
>> 2013/1/8 Graeme Geldenhuys > gra...@geldenhuys.co.**uk >>
>>
>>
>> ANY lawyer will waste his on trying to make a claim that that is
>> copyrightable.
>>
>>
>> Especially in a case that no one is making money with it. ..
>>
>>
>> Let's think: penalty would be charged according to the profits gained
>> from the use of the image, then 0-50% = 0
>>
>
> Sorry, penalty is charged according to the *possible* gains (lost profit),
> of the rightholder of a picture (or whatever work). Giving something away
> for free is *not* an excuse for abusing it in this way.
>
> DoDi


Well, i still think the same as anyone here will pay for that picture...


...but, ok, i must learn something about those law issues...
-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] My Lazarus logo using Inkscape

2013-01-08 Thread William Oliveira Ferreira
2013/1/8 Graeme Geldenhuys 

> ANY lawyer will waste his on trying to make a claim that that is
> copyrightable.
>

Especially in a case that no one is making money with it. ..


Let's think: penalty would be charged according to the profits gained from
the use of the image, then 0-50% = 0
-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] My Lazarus logo using Inkscape

2013-01-07 Thread William Oliveira Ferreira
I think not as I can see some big differences...

great drawning!

2013/1/7 Zaher Dirkey 

>
> And it is based on this image, i used it as guide lines to draw my own.
> http://nature.ca/notebooks/english/cheetah_p1.htm
> I am not a lawyer, so not sure if i break any license for the original
> image.
>
> Best Regards
> Zaher Dirkey
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Change View unit/form (F12) bug

2013-01-05 Thread William Oliveira Ferreira
using anchordocking?

2013/1/5 Leonardo M. Ramé 

> Hi, this is a long time bug (I didn't find it on Mantis).
>
> Let's say you are editing a unit and press F12 to change view to edit
> the form visually, it should show the form associated to the current
> unit. If you go back to the source editor, then change tab, to edit
> another unit, then press F12, you'll end editing the form of the
> previous unit, and not the current one.
>
> Step by step:
>
> 1) Edit unit1.pas
> 2) Press F12 -> view unit1.lfm
> 3) Press F12 to go back to the source editor.
> 4) Change tab to unit2.pas
> 5) Press F12 --> BUG!!! -> you'll see unit1.lfm instead of unit2.lfm
>
> The workaround I use is to go back and forth between unit1 and unit2,
> and press F12 until I see the correct form.
>
> Regards,
> --
> Leonardo M. Ramé
> http://leonardorame.blogspot.com
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Bugtracker don´t load

2012-12-27 Thread William Oliveira Ferreira
hi!,

I´ve got the following error while try to view bugtracker


SYSTEM WARNING: require_once()
[function.require-once]:
SAFE MODE Restriction in effect. The script whose uid is 1000 is not
allowed to access /usr/share/php/adodb/adodb.inc.php owned by uid 0

SYSTEM WARNING: require_once(/usr/share/php/adodb/adodb.inc.php) [
function.require-once ]:
failed to open stream: No such file or directory

*Fatal error*: require_once()
[function.require]:
Failed opening required 'adodb/adodb.inc.php'
(include_path='.:/usr/share/php:/usr/share') in *
/FPC/mantis/docroot/core/database_api.php* on line *35


*--

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] TSQLQuery Error Database not assigned.

2012-12-26 Thread William Oliveira Ferreira
Another point is add a transaction on your project and assign it to
sqlconnection...

At least, i never connected without a transaction 

Em 26/12/2012 12:37, "Michael Van Canneyt" 
escreveu:
>
>
>
> On Wed, 26 Dec 2012, Giuliano Colla wrote:
>
>> I'm trying to familiarize with MySql components, using mysql 5.1.
>> I downloaded the TryMySql example linked from the Wiki page, I've
changed TMySQL50Connection to TMySQL51Connection, and set in SQLQuery
ParseSQL=False and ReadOnly=true, as suggested, but when I try to run it,
the "connect to server" fails with the error "Database not assigned!".
>> The code I'm using is:
>>
>>  MySQLConnection1.HostName := HostEdit.Text;
>>  MySQLConnection1.UserName := UserEdit.Text;
>>  MySQLConnection1.Password := PasswdEdit.Text;
>>  MySQLConnection1.DatabaseName := 'mysql'; // MySQL is allways there!
>>  ShowString('Opening a connection to server: ' + HostEdit.Text);
>>  MySQLConnection1.Open;
>>
>>  // First lets get a list of available databases.
>>  if MySQLConnection1.Connected then begin
>>ShowString('Connected to server: ' + HostEdit.Text);
>>ShowString('Retreiving list of available databases.');
>>SQLQuery1.SQL.Text := 'show databases';
>>SQLQuery1.Open; < Fails here
>
>
> Did you set
>  SQLQuery1.Database:=MySQLConnection1;
>
> ?
>
> Also 'Show databases' will - to my knowlegde - not work. It is not valid
SQL.
> as far as I know, it's a metadata statement that is handled by the mysql
client which translates it to an API call.
>
> Michael.
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] toolbar and toolbutton issues

2012-12-05 Thread William Oliveira Ferreira
Sorry, I was talking about TToolbar's.AutoSize

2012/12/5 waldo kitty 

> On 12/5/2012 16:56, William Oliveira Ferreira wrote:
>
>> Weird, ToolBar.Height should make the toolbar bigger, without change
>> button
>> height (if autosize is false)...
>>
>
> which autosize? the one for the toolbar or the one for the buttons?
>
>  2012/12/5 Graeme Geldenhuys > <mailto:gra...@geldenhuys.co.**uk >>
>>
>>
>> On 2012-12-05 18:41, William de Oliveira Ferreira wrote:
>>  >
>>  > Graeme, could you try this?
>>  > begin
>>  >ToolBar1.ButtonHeight := 36;
>>  >ToolBar1.ButtonWidth  := 36;
>>
>> Ah, I see the problem now. I was trying to set the ToolButton.Height &
>> .Width property using the Object Inspector. Apparently that is not
>> possible. You are supposed to set the Toolbar.ButtonHeight &
>> .ButtonWidth, then the buttons change sizes.
>>
>> So why does the TToolButton class have publish properties .Height and
>> .Width in Object Inspector when you can't do anything with them. In
>> that
>> case, remove those properties from the Object Inspector, or clearly
>> show
>> them as read-only!
>>
>> Another not-so-intuitive design.
>>
>> MSEgui is infinitely more complicated to use in general, yet I figured
>> out how to setup a toolbar faster in MSEide & MSEgui, than I did in
>> Lazarus with LCL. No offence meant to the Martin (MSEgui developer),
>> but
>> that should say something to the LCL developers.
>>
>> Anyway, thanks William for getting me onto the right track.
>>
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus<http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus>
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] toolbar and toolbutton issues

2012-12-05 Thread William Oliveira Ferreira
Weird, ToolBar.Height should make the toolbar bigger, without change button
height (if autosize is false)...

2012/12/5 Graeme Geldenhuys 

> On 2012-12-05 18:41, William de Oliveira Ferreira wrote:
> >
> > Graeme, could you try this?
> > begin
> >ToolBar1.ButtonHeight := 36;
> >ToolBar1.ButtonWidth  := 36;
>
> Ah, I see the problem now. I was trying to set the ToolButton.Height &
> .Width property using the Object Inspector. Apparently that is not
> possible. You are supposed to set the Toolbar.ButtonHeight &
> .ButtonWidth, then the buttons change sizes.
>
> So why does the TToolButton class have publish properties .Height and
> .Width in Object Inspector when you can't do anything with them. In that
> case, remove those properties from the Object Inspector, or clearly show
> them as read-only!
>
> Another not-so-intuitive design.
>
> MSEgui is infinitely more complicated to use in general, yet I figured
> out how to setup a toolbar faster in MSEide & MSEgui, than I did in
> Lazarus with LCL. No offence meant to the Martin (MSEgui developer), but
> that should say something to the LCL developers.
>
>
> Anyway, thanks William for getting me onto the right track.
>
>
> Regards,
>   - Graeme -
>
> --
> fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
> http://fpgui.sourceforge.net/
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] pointers in writing extension for Lazarus

2012-12-05 Thread William Oliveira Ferreira
Good idea! notepad++ does it with sync scroll too :)

2012/12/5 ik 

> Hello,
>
> For a very long time now (7-8 years), that I wish to add Lazarus
> possibility to split edit of my current edit (and other open files)
> vertically and horizontally.
> I understand that many people here don't like the idea, so I wish to
> write an extension for, rather then adding it to the UI itself.
>
> Can you please give me some pointers in the matter on how to start
> writing it, what should I be looking for etc... ?
>
> Thanks,
> Ido
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] New user interface for future major releases of Lazarus

2012-12-05 Thread William Oliveira Ferreira
2012/12/4 Hans-Peter Diettrich 

>
> But one option should be feasable, to turn on/off an already installed
> DockMaster on the fly - *similar to the Delphi Un/Docked layout option*.
>
> DoDi
>

This is precisely the point I was talking about! How can we think of
something about it if we don't know which docking  solution to work? I
think our first standoff is now selecting a docking solutions to change
their behavior in order to be able to create this menu "On The Fly"

sorry about any english mistakes...

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Installing Lazarus on Ubuntu 12.04LTS

2012-12-04 Thread William Oliveira Ferreira
I don´t use Ubuntu but i use Mint that is a Debian derivated. On it, i
first do "apt-get install lazarus" to install the outdated version. Later,
I install the debian version file on Lazarus' home page using the dpkg. If
it get somekind of error, generally is solved with a "apt-get -f install".
But, well to tell something more precise, we must know what heappens with
your system during installation


Ps.: sorry about any english mistakes...

2012/12/2 Curt Carpenter <1cjcarpen...@att.net>

> Does anyone know a knowledgeable Ubuntu/Linux person in the Dallas, Texas
> area that could help me install Lazarus
> on that OS?  I could afford to pay modestly for the help.
>
> I have Ubuntu 12.04 working on a PC and have read everything I can find on
> the net about this install -- but I'm new to
> Linux, so much of what I read is foreign to me (example:  one set of
> instructions tells me that I must install the
> Lazarus meta-package using Synaptic -- but I don't know what a
> meta-package is, or where to find the Lazarus meta-package
> (don't see it on Source Forge) -- or how to use Synaptic (although I do
> seem to have installed it using sudo!)
>
> I think I can eventually figure this out (my goal is to learn to use Linux
> anyway) -- but having a guide in this particular case would,
> I think, be 300 - 400% more efficient!
>
> Thanks for any help.
>
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] New user interface for future major releases of Lazarus

2012-12-04 Thread William Oliveira Ferreira
I think a good way to solve that is selecting a default dock manager (Easy
Dock Manager or AnchorDocking) and make it installed as default for new
instalations. But today, I agree that we have some more important issues to
think about (ex.: Dynamic component loading)

Felipe, se você tiver alguma poposta compilavel, envie para a lista que
muitos irão realizar os devidos testes

2012/12/4 Felipe Ferreira da Silva 

>  I would like to propose and discuss about a new graphical user
> interface for the next major releases. Nowadays, most of the RAD tools use
> a docked interface(MonoDevelop, Delphi, VS), and in some cases they are
> stylish(like the recent Visual Studio versions). I think that a
> better-looking IDE would not just make the programming task more pleasant,
> but also could attract more people to Pascal.
>
> I know about the existence of AnchorDocking package for a docked
> IDE, but I think that if such feature were built-in, the IDE could be
> improved with appropriated features for a docked app - and since the forms
> would be still undockable, the user could switch back to the "Delphi7-like"
> interface.
>
> My propose is ask if you guys would mind if I work on some
> projects with a different interface and made in Lazarus(of course) to you
> evaluate. I'm good at create components and customize to give them a
> stylish appearance like in the case of VS. But I would like to know from
> you guys first.
>
>
> *- Felipe*
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] New user interface for future major releases of Lazarus

2012-12-04 Thread William Oliveira Ferreira
Today, it can be done via AnchorDocking. Just dock only the message Window
on Source Window and disable those bevels used as drag surface...

2012/12/4 Felipe Monteiro de Carvalho 

> One thing to consider for diminishing the number of windows in Lazarus
> would be by default merging the messages into the Source Editor. That
> would make 1 less window and most people always keeps it under the
> source editor anyway.
>
> --
> Felipe Monteiro de Carvalho
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Source Tab duplication on Linux...

2012-11-30 Thread William Oliveira Ferreira
I had already deleted the file LPS trying to solve the problem.

To facilitate, I open the project stored on the original partition.

I will try other ways to create this symbolic link later.

2012/11/30 Martin 

>  You also wont to check the lps (session) file (may be in your main
> config folder).
>
> Now that it knows both pathes, there may be references. Simpl gcep for the
> path, you do not ant to open
>
>
> On 30/11/2012 01:36, William Oliveira Ferreira wrote:
>
> Thanks for the hint!
>
> 2012/11/29 William Oliveira Ferreira 
>
>>
>>
>>  2012/11/29 Martin 
>>
>>> Look at the filename (with path) in the statusbar.
>>> The location differ.
>>>
>>> Maybe it is a link (lazarus does not detect links), maybe you used the
>>> other copy of the file.
>>>
>>> In any case for lazarus this are 2 diff files.
>>>
>>>
>> I didn't created any copy file on this situation but i neither noticed
>> that the file name differs on the statusbar. Today, I use an extra
>> partition to store my docs and source-codes and I also created some
>> symbolic links that points to these folders inside user's folder to easely
>> to access my files on some situations...
>>
>>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Source Tab duplication on Linux...

2012-11-29 Thread William Oliveira Ferreira
Thanks for the hint!

2012/11/29 William Oliveira Ferreira 

>
>
> 2012/11/29 Martin 
>
>> Look at the filename (with path) in the statusbar.
>> The location differ.
>>
>> Maybe it is a link (lazarus does not detect links), maybe you used the
>> other copy of the file.
>>
>> In any case for lazarus this are 2 diff files.
>>
>>
> I didn't created any copy file on this situation but i neither noticed
> that the file name differs on the statusbar. Today, I use an extra
> partition to store my docs and source-codes and I also created some
> symbolic links that points to these folders inside user's folder to easely
> to access my files on some situations...
>
> --
> 
> William de Oliveira Ferreira
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Source Tab duplication on Linux...

2012-11-29 Thread William Oliveira Ferreira
2012/11/29 Martin 

> Look at the filename (with path) in the statusbar.
> The location differ.
>
> Maybe it is a link (lazarus does not detect links), maybe you used the
> other copy of the file.
>
> In any case for lazarus this are 2 diff files.
>
>
I didn't created any copy file on this situation but i neither noticed that
the file name differs on the statusbar. Today, I use an extra partition to
store my docs and source-codes and I also created some symbolic links that
points to these folders inside user's folder to easely to access my files
on some situations...

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Source Tab duplication on Linux...

2012-11-29 Thread William Oliveira Ferreira
Hi,

when I'm debugging a application and the debugger reach a break point, it
doesn't use the already open source tab, Lazarus opens a new tab of the
same file focusing the break point line.

How can I change this behavior?

Screen Shots:
http://imagebin.org/237601
http://imagebin.org/237602

PS.: Sorry about all language errors..

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Easy and save way to rename a Unit

2012-11-23 Thread William Oliveira Ferreira
ok, thanks...
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Easy and save way to rename a Unit

2012-11-23 Thread William Oliveira Ferreira
But it updates all references ?

2012/11/23 Daniel Gaspary 

> On Fri, Nov 23, 2012 at 3:54 PM, William Oliveira Ferreira
>  wrote:
> > hi, Is there an easy and save way to rename an unit inside lazarus?
>
> "Save As" at "File" menu item works for me.
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Easy and save way to rename a Unit

2012-11-23 Thread William Oliveira Ferreira
hi, Is there an easy and save way to rename an unit inside lazarus?

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] TSpeedButton.Down

2012-11-22 Thread William Oliveira Ferreira
Thanks, exactly that!

2012/11/22 Junior 

> AllowAllUp = True
> GroupIndex = 1
>
>
> Em Thu, 22 Nov 2012 11:05:36 -0200
> William Oliveira Ferreira  escreveu:
>
> > Hi,
> >
> > How can i set True to TSpeedButton.Down?
> >
> > I´m asking this ´cos here, on Laz 1.0 (and 1.0.2) for Windows is not
> > working...
> > Should I enable something else before?
> >
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] TSpeedButton.Down

2012-11-22 Thread William Oliveira Ferreira
Hi,

How can i set True to TSpeedButton.Down?

I´m asking this ´cos here, on Laz 1.0 (and 1.0.2) for Windows is not
working...
Should I enable something else before?

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Stringgrid ?

2012-11-17 Thread William Oliveira Ferreira
Juha, why not use onDrawCell ? Is there any performance issue?

2012/11/17 Juha Manninen 

> On Sat, Nov 17, 2012 at 2:31 AM, Terry A. Haimann
>  wrote:
> > How do you change the Font Color for a TStringGrid Cell?
>
> Use the OnPrepareCanvas event.
>
> Juha
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] TDBNavigator icons break symmetry

2012-10-20 Thread William Oliveira Ferreira
Could some of these?
http://www.famfamfam.com/lab/icons/silk/previews/index_abc.png
http://www.famfamfam.com/lab/icons/silk/

2012/10/19 Ajeandro Gonzalo 

> Does anyone have a source fot suitable icons (also i need a gear one)?
> Maybe put them in a zip file and attach thwm to a message?  Or upload to a
> free host like http://www.zippyshare.com?
>
> Thanks.
>
> A. G.
>
> --- On Sat, 10/13/12, Bart  wrote:
>
> > From: Bart 
> > Subject: Re: [Lazarus] TDBNavigator icons break symmetry
> > To: "Lazarus mailing list" 
> > Date: Saturday, October 13, 2012, 5:15 AM
> > On 10/10/12, Graeme Geldenhuys 
> > wrote:
> > > On 2012-10-09 23:12, Bart wrote:
> > >>
> > >> File a feature request in the bugtracker?
> > >> Otherwise it will be forgotten.
> > >
> > > http://bugs.freepascal.org/view.php?id=23097
> > >
> >
> > I implemented it in r39065.
> > Please test and report any bugs.
> >
> > Bart
> >
> > --
> > ___
> > Lazarus mailing list
> > Lazarus@lists.lazarus.freepascal.org
> > http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
> >
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] How to change default editor font *before* primary config ~/.lazarus is created?

2012-10-15 Thread William Oliveira Ferreira
I think the default font should be the same from the Window manager.  On
Gnome is possible to set the default font for mono spaced text. Lazarus
should read that setting on first run...


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Fwd: Build-Depends: imagemagick

2012-10-15 Thread William Oliveira Ferreira
apt-get install gdb ?

on Mint, i must install gdb manually...

2012/10/15 Kamen Ketev 

> Hi,
>
> I install Lazarus from  Debian Repository  under Ubuntu
> and compyle new project without problem. But can't find debugger. I
> install Lazarus 1.0.2 from sf and compyle new project without problem.
> Without debugger they runs. Please tell me where I can find debugger  under
> Ubuntu. Thanks!
>
>
>
>  Оригинално писмо 
> От: Bernd **
> Относно: [Lazarus] Fwd: Build-Depends: imagemagick
> До: Lazarus mailing list **
> Изпратено на: Неделя, 2012, Октомври 14 04:52:26 EEST
>
>
>
> [forwarded another copy to the list because of mailinglist was missing
> in recipients]
>
> 2012/10/8 Mattias Gaertner 
> http://../servlet/sendmess?ac=sab&to=nc-gaert...@netcologne.de>
> >:
>
> > That's a lot
> > of work and I'm glad they do it.
>
> The problem is the Debian packages from Debian don't do it either!
>
> They consist of many hundred lines of convoluted unmaintained(!)
> script that is trying to press every possible button the debian
> packaging system provides (except the new dh overrides which would
> simplify matters) (it has meta-packages and virtual packages and
> versioned packages, it is using update-alternatives for no reason (who
> wants to install two different ancient(!) versions of Lazarus
> simultaneously?)), it is ripping apart lazarus into many small pieces
> and introducing new bugs and damaging Lazarus' reputation and the only
> thing it is *NOT* doing is installing all needed files where they
> belong! It does not install mime types, it is trying to intstall a
> default config file that does not even exist anymore, when you start
> it for the first time it will complain about wrong paths and packages
> installed but no .lpk files found (probably because lazarus-ide fails
> to depend on lazarus-src which is *essential* for using the ide, why
> did they split it in the first place?), even a simple make install
> even in the current limited form would immediately give a better
> install than the debs from Debian.
>
> I would rather not see any of these half-baked and broken Debian
> packages at all in any of the repositories so that no new user
> accidentally installs them and then immediately comes to the
> conclusion that Lazarus is completely broken and unusable because that
> is exactly what currently happens when one installs Lazarus from the
> Ubuntu software center.
>
> I vote for dumping this broken and unmaintained packaging entirely and
> rewrite it from scratch in a much simpler way with only two packages,
> one containing everything needed for building from the command line
> with lazbuild and another package containing the ide, the source and
> all the rest that is needed to use the ide because this is the only
> logical and natural separation that would make sense. Everything going
> beyond that would be nonsense and wasted manpower.
>
> If Lazarus and Pascal programming and Pascal units are by design
> incompatible with the way how Debian is organized or how its ancient
> bureaucratic policies blindly dictate and they cannot put such simple
> and working packages into their Repository then so be it! It doesn't
> matter! An alternative repository can be set up in one afternoon and
> Debian could no longer damage the reputation of Lazarus by providing
> ancient and broken packages.
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>  
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Drawing over LCL controls

2012-10-06 Thread William Oliveira Ferreira
did you tested that link i've send?

2012/10/6 Krzysztof 

> Ok I have done this with text manipulation (on enter, on exit events)
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Drawing over LCL controls

2012-10-05 Thread William Oliveira Ferreira
If there´s no problem, you can use LazSolutions Component Pack
https://github.com/silvioprog/lazsolutions

It has a TEdit with the placeholder property that does exactly what you need

2012/10/5 Krzysztof 

> I want draw hint text over edit like "search" which disappear when
> control get focus. I have already done it by changing text in DoEnter
> and DoExit methods (like in lazarus control TTreeFilterEdit), but I'm
> just curious if it is possible do the same thing by drawing text
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Resizing components

2012-09-12 Thread William Oliveira Ferreira
No problems here (Synaptics touchpad on Windows 7 Home Premiun 64)

2012/9/12 Mattias Gaertner 

> On Tue, 11 Sep 2012 13:28:08 -0700 (PDT)
> Ajeandro Gonzalo  wrote:
>
> > Just like in Delphi, resizing forms using the touchpad on my Win 7 64bit
> laptop is easy.  But unlike in Delphi, resizing components (like DBGrid)is
> impossible with the touchpad, the double-headed arrow won't stay put - I
> have to manually enter the size into the Object Inspector.
> >
> > Why can't the same method be used to resize components as for forms?
>
> I have no tried Windows 7 with touchpad, but
> on Linux and OS X touchpads are translates to normal mouse events by the
> OS and that works.
>
> How do you drag and drop on your touchpad?
>
> Mattias
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Function to replace some chars

2012-09-08 Thread William Oliveira Ferreira
Thanks for the hint, Graeme, I'll take a better look on it...


2012/9/8 Graeme Geldenhuys 

> On 08/09/12 15:39, William Oliveira Ferreira wrote:
>
>> Does somone knows some functions that replaces special chars like ã é Ü to
>> it HTML special chars like á ?
>>
>
> Yes, have a look in the tiOPF v2 repository on Source Forge (www.tiopf.com).
> Then in the Options/tiXML.pas unit. Take a look at the
> TtiXMLReservedCharsTranslator class. It can do the conversion in both
> directions. It already has some mapping characters setup for use with XML,
> CSV, TAB and MS-XML files, but you can easily extended that. The XML
> mapping is probably what you want, or can be adapter for HTML. I've cut and
> pasted that code and used it outside tiOPF without problems - so no need
> for a tiOPF dependency.
>
>
> http://tiopf.svn.sourceforge.**net/viewvc/tiopf/tiOPF2/Trunk/**
> Options/tiXML.pas?revision=**2188&view=markup<http://tiopf.svn.sourceforge.net/viewvc/tiopf/tiOPF2/Trunk/Options/tiXML.pas?revision=2188&view=markup>
>
>
> Regards,
>   - Graeme -
>
>
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus<http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus>
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus 1.0 Release

2012-08-29 Thread William Oliveira Ferreira
Wow! Excellent work all you done! I can't believe I saw that !  all going
to put the news on some foruns...

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Delphi post-XE3 roadmap

2012-08-29 Thread William Oliveira Ferreira
2012/8/28 Sven Barth 

> On 28.08.2012 19:59, Graeme Geldenhuys wrote:
>
>> On 28/08/12 18:11, Alexsander Rosa wrote:
>>
>>>
>>> "From XE3 onwards, your Delphi Professional EULA will prohibit you from
>>>
 using Delphi Professional for anything other than local data access."

>>>
>>
>> R.I.P Delphi!
>>
>
> The more I read about Delphi XE3 the more I have the feeling that FPC and
> Lazarus should leave the route laid out by Delphi...
>

Totally agree...
-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Delphi post-XE3 roadmap

2012-08-23 Thread William Oliveira Ferreira
Many big companies do things like that! E.g: Enter on Microsoft Website,
they will promote Windows 7 until Windows 8 be finally released...

2012/8/23 Anders E. Andersen 

> Den 22-08-2012 19:09, Graeme Geldenhuys skrev:
>
>  On 21 August 2012 12:01, Howard Page-Clark  wrote:
>>
>>> If you have not seen it, users of Delphi XE2 may be interested to read
>>>
>> And the big news is that the soon to be launched XE3 will not ship
>> with FireMonkey or FPC or any iOS development tools for that matter.
>> Wow, I can see quite a few ISV's (eg TMS) being pretty pissed of now,
>> spending lots of money building 3rd party components for FireMonkey -
>> all for nothing!
>>
>>
> Where is your source for this? The blogs on the Embarcadero website puts a
> lot of emphasis on the firemonkey components and as far as I have read the
> framework will ship for both Windows and OSX from the get go. The mobile
> platforms will be added at a later date.
>
> Anders
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Adding Lazarus 1.0 RC 1 to version options in mantis

2012-08-08 Thread William Oliveira Ferreira
This list changes dynamic according to project?

2012/8/8 Graeme Geldenhuys 

> Hi,
>
> On 8 August 2012 14:22, William Oliveira Ferreira
>  wrote:
> > I submited a bugreport right now and i still can´t select the correct
> > version. I was removed?
>
> That's weird, I just tried, and I can definately see the 1.0.0RC1
> option. See attached screenshot.
>
>
>
> --
> Regards,
>   - Graeme -
>
>
> ___
> fpGUI - a cross-platform Free Pascal GUI toolkit
> http://fpgui.sourceforge.net
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Adding Lazarus 1.0 RC 1 to version options in mantis

2012-08-08 Thread William Oliveira Ferreira
I submited a bugreport right now and i still can´t select the correct
version. I was removed?

http://imagebin.org/223773

2012/8/5 William Oliveira Ferreira 

> thanks
>
> 2012/8/4 Marco van de Voort 
>
>> On Sat, Aug 04, 2012 at 10:42:16AM -0300, William Oliveira Ferreira wrote:
>> > Could someone add Lazarus 1.0 RC1 in Lazarus Version list on Mantis?
>> >
>> > I reported a bug some minutes ago and i didn??t see the version on
>> list...
>> >
>> > Sorry about any english mistakes...
>>
>> Done, I hope the laz devels don't mind. If so, please delete it again.
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>
>
>
> --
> 
> William de Oliveira Ferreira
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Adding Lazarus 1.0 RC 1 to version options in mantis

2012-08-05 Thread William Oliveira Ferreira
thanks

2012/8/4 Marco van de Voort 

> On Sat, Aug 04, 2012 at 10:42:16AM -0300, William Oliveira Ferreira wrote:
> > Could someone add Lazarus 1.0 RC1 in Lazarus Version list on Mantis?
> >
> > I reported a bug some minutes ago and i didn??t see the version on
> list...
> >
> > Sorry about any english mistakes...
>
> Done, I hope the laz devels don't mind. If so, please delete it again.
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Adding Lazarus 1.0 RC 1 to version options in mantis

2012-08-04 Thread William Oliveira Ferreira
Could someone add Lazarus 1.0 RC1 in Lazarus Version list on Mantis?

I reported a bug some minutes ago and i didn´t see the version on list...

Sorry about any english mistakes...

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Please remove Arabic language from the release version

2012-08-04 Thread William Oliveira Ferreira
2012/8/4 Flávio Etrusco 

> ...
> However, I know programmers that don't speak English, so a localized
> IDE can reach a wider audience, and I believe most people will/do
> realize Lazarus is an OSS project and will overlook translation
> problems (but it's better to have a hint in the installer and better
> yet be able to change it right away).
>


Agree...


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Please remove Arabic language from the release version

2012-08-04 Thread William Oliveira Ferreira
2012/8/3 silvioprog 

> 2012/8/3 Zaher Dirkey :
> > On Sat, Aug 4, 2012 at 1:10 AM, Mattias Gaertner <
> nc-gaert...@netcologne.de>
> > wrote:
> >>
> >>
> >> There is no question that wrong translations must be fixed or removed
> >> so that the default (English) is shown.
> >>
> >> What about the texts and hints?
> >
> >
> > I think po files 10% translated, idk how to measure it, a lot of
> sentences
> > is not translated, and in other have we are not use it even if
> translated.
> >
> > I am Pascal programmer for a 20 years, my wife also teacher, teaching
> > students Delphi 7 in English language.
> >
> > Best Regards
> > Zaher Dirkey
>
> Here in Brazil all programmers (yes, ALL) use Delphi in english.
>
> I think very strange the IDE capture the current language of operating
> system (portuguese) and uses it as default. x(
>
> This has hindered my support for Lazarus, because the users can't
> found the options (because all menus come in portuguese language). :(
>
> Another problem:
>
> http://imagebin.org/223226
>
> IDE in english as default plz! ¹ :)
>
> --
> Silvio Clécio
> My public projects - github.com/silvioprog
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>

[PT-BR]Tamu nessa pra resolver esta aê!

[EN] We are working on it exaclty to solve issues like that...

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Call for translations updates for 1.0 release and pending Portuguese translation removal

2012-08-03 Thread William Oliveira Ferreira
understood.

I´m adapting PT-BR translation, so, i'll offer it when finished.

2012/8/3 Martin 

>  On 03/08/2012 19:30, William Oliveira Ferreira wrote:
>
> Inside IDE Options > Editor > Mouse
> For all those special keys settings, i´m trying to understand because i
> never looked at that.
> Alt-Ctrl Button means that when I hold Alt+Ctrl and press Left 1
> (example), it will call that action?
>
>  http://wiki.lazarus.freepascal.org/IDE_Window:_Editor_Options_Mouse
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Call for translations updates for 1.0 release and pending Portuguese translation removal

2012-08-03 Thread William Oliveira Ferreira
Inside IDE Options > Editor > Mouse
For all those special keys settings, i´m trying to understand because i
never looked at that.
Alt-Ctrl Button means that when I hold Alt+Ctrl and press Left 1 (example),
it will call that action?

2012/8/3 William Oliveira Ferreira 

> thanks, i'll take a look
>
> 2012/8/3 Reinier Olislagers 
>
>> On 3-8-2012 14:43, William Oliveira Ferreira wrote:
>> > I Still knows nothins about these po files. How can i create a new
>> > translation?
>>
>> http://wiki.lazarus.freepascal.org/Translations_/_i18n_/_localizations_for_programs#.po_Files
>>
>> I like Virtaal. There are others.
>>
>> HTH
>>
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>
>
>
> --
> 
> William de Oliveira Ferreira
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus 1.0 release candidate 1 available for download

2012-08-03 Thread William Oliveira Ferreira
2012/8/3 Graeme Geldenhuys 

> The default "IDE Options" dialog is too small to fit all the main
> content (to the right of the treeview). See the screenshot where lots
> of content is clipped. Most developers would consider default dialog
> sizes to fit all default content.



I Think it´s caused by the GTK Theme that you´re using. The default
Clearlooks has big controls (in comparison to Win32) and because this (and
other some other factors) i´m downloading other theme on gnome-look. But,
obviously that´s not a solution, it´s just a workaround for my
environment...


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Inno Setup no longer supports Windows 95, Windows 98, Windows Me

2012-08-03 Thread William Oliveira Ferreira
2012/8/3 Luiz Americo Pereira Camara 

> Em 3/8/2012 03:30, Bart escreveu:
>
>  On 8/3/12, Luiz Americo Pereira Camara  wrote:
>>
>>
>>  Removing support for win9x would help cleanup the win32 widgetset
>>>
>> I totally agree.
>> Someday a decision should be made to cut the dead wood.
>>
>
> IMO the best time is now (after 1.0).
>
> The same for old gtk2 (2.8 etc)
>
> Luiz
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus
>

I don´t know in which version gtk2 is but it´s used on XFCE

-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Call for translations updates for 1.0 release and pending Portuguese translation removal

2012-08-03 Thread William Oliveira Ferreira
thanks, i'll take a look

2012/8/3 Reinier Olislagers 

> On 3-8-2012 14:43, William Oliveira Ferreira wrote:
> > I Still knows nothins about these po files. How can i create a new
> > translation?
>
> http://wiki.lazarus.freepascal.org/Translations_/_i18n_/_localizations_for_programs#.po_Files
>
> I like Virtaal. There are others.
>
> HTH
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Call for translations updates for 1.0 release and pending Portuguese translation removal

2012-08-03 Thread William Oliveira Ferreira
I Still knows nothins about these po files. How can i create a new
translation?

2012/8/2 Maxim Ganetsky 

> Hello.
>
> Now that Lazarus 1.0 RC1 is out it is time to review and update
> translations for it.
>
> Please check out fixes branch (http://svn.freepascal.org/**
> svn/lazarus/branches/fixes_1_0),
>  review and update your translations and attach updates (as full PO
> files, not patches) to our bugtracker. Mark your reports with Lazarus
> version clearly in order to avoid confusion.
>
> Special note about Portuguese translation: it will be removed both from
> trunk and fixes branch before 1.0 release if it won't be updated (it is
> outdated copy of Brazilian Portuguese translation).
>
> --
> Best regards,
>  Maxim Ganetsky  mailto:gan...@narod.ru
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus and Free Pascal downloads plummeting on SourceForge

2012-07-30 Thread William Oliveira Ferreira
SVN updates doesn't count on this graphic, right?

2012/7/30 Juha Manninen 

> On Mon, Jul 30, 2012 at 10:18 PM, Russell Davies 
> wrote:
>
>> Over the years I have occasionally checked the increase in downloads
>> of both Lazarus and Free Pascal on SourceForge, but for some reason
>> the download rates of both suddenly seem to be in free-fall!  See the
>> attached graphs.
>>
>
> Lazarus 1.0 release will make it sky-rocket again :)
>
> Juha
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Building help files: the nitty-gritty

2012-07-28 Thread William Oliveira Ferreira
Seems to be a good project.

Could someone from LazCore make a test on it?

I think it should be a step foward to a Lazarus' Embedded Help System

2012/7/28 Kostas Michalopoulos 

> I just noticed this (there is a lot of activity in the mailing list and i
> only browse it occasionally).
>
> On 10/7/2012 6:39 μμ, Graeme Geldenhuys wrote:
>
>> Hi,
>>
>> My question still stands though. I don't know what is the
>> recommendation for "application help" with LCL based applications. eg:
>> I create a new project which is a new Programming Editor. I want to
>> supply a end-user help file with my binary - like all good software
>> does. What help file format do I use (as the developer of that
>> product), and how do I create/edit that help file?
>>
>>
> Personally i have written a custom help system:
>
> http://badsector.github.com/**lazhelp/
>
> It is made up of a bunch of components that can either provide the help
> content from inside the program (f.e. from a resource or just a string
> list) or from an external file. The help can be displayed as a
> popup/tooltip, inside a panel using a custom control or a separate window
> with back, forward, home and other optional buttons (like introduction,
> tutorial, etc). It can also be registered as a help provider for LCL (so
> you can use HelpContext etc in controls).
>
> The viewer is written with LCL so it should be portable (although there
> are some inconsistencies, especially regarding scrollbars). There aren't
> many things supported by the language (which has a simple syntax) but it
> should be enough for simple applications. For larger help sites, it
> probably needs more stuff (f.e. there is no table support).
>
> I have used it for Runtime World, my 3D world editor:
>
> http://chiselapp.com/user/**badsector/repository/rtworld/
>
> and for LILCard, a hypercard-like program:
>
> https://github.com/badsector/**lilcard
>
> (the latter shows how the help system can become part of the executable
> itself since lilcard is a single executable in all platforms)
>
> The reason i made it is, as you have said in other threads, i find Lazarus
> current help situation to be inadequate at least. Additionally, i don't
> want to distribute a huge executable for viewing CHM files (in the case the
> user's computer do not have the ability to view CHM files) and i find the
> CHM viewer's user interface to be somewhat complex.
>
> Kostas "Bad Sector" Michalopoulos
>
>
>
> --
> __**_
> Lazarus mailing list
> Lazarus@lists.lazarus.**freepascal.org
> http://lists.lazarus.**freepascal.org/mailman/**listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus + Fedora 17 + anchordocking = crash?

2012-07-13 Thread William Oliveira Ferreira
in my home path doesn't have any lazarus binaries, i've checked that. by
command line build, it stills shows wrong version information


2012/7/13 Reinier Olislagers 

> On 13-7-2012 19:40, William Oliveira Ferreira wrote:
> > i'm using the wrong version. What i'm thinking is strange is that i
> > install a lazarus version from snapshot to make subversion overwrite it
> > files. After a clean build from de IDE and from command line (make clean
> > all, make clean bigide), it stills shows that i'm using 0.9.30.4.
>
> Looks like to me like your shortcut is pointing to a system wide install
> while you installed the snapshot version e.g. in ~/lazarus for a certain
> user.
>
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus + Fedora 17 + anchordocking = crash?

2012-07-13 Thread William Oliveira Ferreira
i'm using the wrong version. What i'm thinking is strange is that i install
a lazarus version from snapshot to make subversion overwrite it files.
After a clean build from de IDE and from command line (make clean all, make
clean bigide), it stills shows that i'm using 0.9.30.4.

I'm thinking in get back to opensuse...

2012/7/13 Mattias Gaertner 

> On Fri, 13 Jul 2012 13:25:02 -0300
> William Oliveira Ferreira  wrote:
>
> > by it shortcut on main menu.
>
> Have you changed the shortcut to start the new IDE from trunk?
>
> Please check that you run Lazarus 1.1, not the old 0.9.30.x in the
> Help / About.
>
> Mattias
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus + Fedora 17 + anchordocking = crash?

2012-07-13 Thread William Oliveira Ferreira
by it shortcut on main menu.

2012/7/13 Mattias Gaertner 

> On Fri, 13 Jul 2012 12:51:12 -0300
> William Oliveira Ferreira  wrote:
>
> > well, i don't have that file...
>
> How do you start the IDE?
>
> Mattias
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus + Fedora 17 + anchordocking = crash?

2012-07-13 Thread William Oliveira Ferreira
well, i don't have that file...


2012/7/13 Mattias Gaertner 

> **
>
>
> William Oliveira Ferreira  hat am 13. Juli 2012
> um 12:39 geschrieben:
>
>   I have compiled now svn that i got and it behaved the same way. There
> was another problem: If I try to resize the main window, the lazarus quits
> unexpectedly.
>
>
>
> Stop the IDE.
>
> Delete the file ~/.lazarus/anchordocklayout.xml
>
> Start the IDE.
>
> This will load the defaults.
>
>
>
> On some systems resizing the main windows can crash. It is already
> reported.
>
>
>
>
>
> Mattias
>
>
>
>
>
>
>   2012/7/13 William Oliveira Ferreira 
>
> nice :)
>
> well, i already downloaded the trunk via svn but i didn't compiled it
>
>  2012/7/13 Mattias Gaertner 
>
>  On Thu, 12 Jul 2012 20:33:04 -0300
> William Oliveira Ferreira < bdexterholl...@gmail.com> wrote:
>
> > Hi list,
> >
> > I installed fedora 17 today. I also made the installation of lazarus
> > 0.9.30.4 using the yum command. The installation went well and the
> Lazarus
> > is working fine. However, if I install the anchordocking, the Lazarus
> opens
> > as shown in the picture ( http://imagebin.org/220557). A attached
> textfile
> > follows that logging also occurred with lazarus.
> >
> > Should I open a bug report on mantis?
> This is already fixed in trunk.
>
>
> > Environment:
> > Lazarus 0.9.30.4 r35971 FPC 2.6.0 x86_64-linux-gtk 2
> > Linux william-pc 3.3.4-5.fc17.x86_64 #1 SMP Mon May 7 17:29:34 UTC 2012
> > x86_64 x86_64 x86_64 GNU/Linux
>  Mattias
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>
>
>
>   --
> 
> William de Oliveira Ferreira
>
>
>
>
> --
> 
> William de Oliveira Ferreira
>
>
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus + Fedora 17 + anchordocking = crash?

2012-07-13 Thread William Oliveira Ferreira
I have compiled now svn that i got and it behaved the same way. There was
another problem: If I try to resize the main window, the lazarus quits
unexpectedly.

2012/7/13 William Oliveira Ferreira 

> nice :)
>
> well, i already downloaded the trunk via svn but i didn't compiled it
>
> 2012/7/13 Mattias Gaertner 
>
>> On Thu, 12 Jul 2012 20:33:04 -0300
>> William Oliveira Ferreira  wrote:
>>
>> > Hi list,
>> >
>> > I installed fedora 17 today. I also made the installation of lazarus
>> > 0.9.30.4 using the yum command. The installation went well and the
>> Lazarus
>> > is working fine. However, if I install the anchordocking, the Lazarus
>> opens
>> > as shown in the picture (http://imagebin.org/220557). A attached
>> textfile
>> > follows that logging also occurred with lazarus.
>> >
>> > Should I open a bug report on mantis?
>>
>> This is already fixed in trunk.
>>
>>
>> > Environment:
>> > Lazarus 0.9.30.4 r35971 FPC 2.6.0 x86_64-linux-gtk 2
>> > Linux william-pc 3.3.4-5.fc17.x86_64 #1 SMP Mon May 7 17:29:34 UTC 2012
>> > x86_64 x86_64 x86_64 GNU/Linux
>>
>>
>> Mattias
>>
>>
>> --
>> ___
>> Lazarus mailing list
>> Lazarus@lists.lazarus.freepascal.org
>> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>>
>
>
>
> --
> 
> William de Oliveira Ferreira
>
>


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Lazarus + Fedora 17 + anchordocking = crash?

2012-07-13 Thread William Oliveira Ferreira
nice :)

well, i already downloaded the trunk via svn but i didn't compiled it

2012/7/13 Mattias Gaertner 

> On Thu, 12 Jul 2012 20:33:04 -0300
> William Oliveira Ferreira  wrote:
>
> > Hi list,
> >
> > I installed fedora 17 today. I also made the installation of lazarus
> > 0.9.30.4 using the yum command. The installation went well and the
> Lazarus
> > is working fine. However, if I install the anchordocking, the Lazarus
> opens
> > as shown in the picture (http://imagebin.org/220557). A attached
> textfile
> > follows that logging also occurred with lazarus.
> >
> > Should I open a bug report on mantis?
>
> This is already fixed in trunk.
>
>
> > Environment:
> > Lazarus 0.9.30.4 r35971 FPC 2.6.0 x86_64-linux-gtk 2
> > Linux william-pc 3.3.4-5.fc17.x86_64 #1 SMP Mon May 7 17:29:34 UTC 2012
> > x86_64 x86_64 x86_64 GNU/Linux
>
>
> Mattias
>
>
> --
> ___
> Lazarus mailing list
> Lazarus@lists.lazarus.freepascal.org
> http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
>



-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Lazarus + Fedora 17 + anchordocking = crash?

2012-07-12 Thread William Oliveira Ferreira
Hi list,

I installed fedora 17 today. I also made the installation of lazarus
0.9.30.4 using the yum command. The installation went well and the Lazarus
is working fine. However, if I install the anchordocking, the Lazarus opens
as shown in the picture (http://imagebin.org/220557). A attached textfile
follows that logging also occurred with lazarus.

Should I open a bug report on mantis?

Environment:
Lazarus 0.9.30.4 r35971 FPC 2.6.0 x86_64-linux-gtk 2
Linux william-pc 3.3.4-5.fc17.x86_64 #1 SMP Mon May 7 17:29:34 UTC 2012
x86_64 x86_64 x86_64 GNU/Linux


-- 

William de Oliveira Ferreira
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


  1   2   3   >