Re: [Lazarus] Exclude components from localization by path or text

2016-02-07 Thread Aradeonas
> Is there any interest in such feature? Yea, sure! It can be very helpful for localization. Regards, Ara -- http://www.fastmail.com - Access your email from home and the web -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Can I assign items in an array all at once in FreePascal?

2016-02-07 Thread Sven Barth
Am 07.02.2016 12:51 schrieb "Michael Van Canneyt" : > > > > On Sat, 6 Feb 2016, Sven Barth wrote: > >>> >>> Because of 2 reasons: >>> >>> 1. Delphi introduced the create constructor. >>> >>> 2. A literal such as [10,20,30,40] is a set in pascal, not an array. >> >> >> The

Re: [Lazarus] Can I assign items in an array all at once in FreePascal?

2016-02-07 Thread Michael Van Canneyt
On Sat, 6 Feb 2016, Sven Barth wrote: Because of 2 reasons: 1. Delphi introduced the create constructor. 2. A literal such as [10,20,30,40] is a set in pascal, not an array. The answer is no longer correct with current Delphi versions. It now is "because we haven't implemented it yet".

Re: [Lazarus] Tool to convert a multiline text to a pascal string constant

2016-02-07 Thread Marco van de Voort
On Wed, Feb 03, 2016 at 07:07:46AM +0100, Michalis Kamburelis wrote: > > As part of PasDoc project we have developed simple file_to_pascal_string > utility for this purpose. Just get > http://svn.code.sf.net/p/pasdoc/code/trunk/source/tools/file_to_pascal_string.dpr > and compile it. Kind of

Re: [Lazarus] Problem with Sparta docked form designer

2016-02-07 Thread Maciej Izak
2016-02-07 20:34 GMT+01:00 Anthony Walter : > There is a problem with the Sparta docked form designer and inherited > forms. Since some of you might not know you can easily register custom > inherited forms with Lazarus I made a brief video going over the problem: > >

Re: [Lazarus] Problem with Sparta docked form designer

2016-02-07 Thread Anthony Walter
I was looking at the code. There might not be an easy solution but the docked designer really needs to support this feature. Can you point out where in the package you are picking the class for and then creating the docked design control? -- ___ Lazarus

Re: [Lazarus] EndOfLine

2016-02-07 Thread hfiandor
Dear Mr. Bart: Thanks very much. I have installed Delphi5 for using the help, but I use Window8.1 and not read the help files, unless I install something, that sometime somebody explain to me, but I forget the emails. When I was using the WindowXP, the Delphi help was very useful, but now ...

[Lazarus] Problem with Sparta docked form designer

2016-02-07 Thread Anthony Walter
There is a problem with the Sparta docked form designer and inherited forms. Since some of you might not know you can easily register custom inherited forms with Lazarus I made a brief video going over the problem: http://cache.getlazarus.org/videos/docked-designer-issue.mp4 I am producing a few

[Lazarus] EndOfLine

2016-02-07 Thread hfiandor
Please, where can I find some information about EndOfLine command? Thanks in advance Yours, Ing. Héctor Fiandor hfian...@ceniai.inf.cu -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] EndOfLine

2016-02-07 Thread Bart
On 2/7/16, hfiandor wrote: > Please, where can I find some information about EndOfLine command? [url]http://freepascal.org/docs-html/rtl/system/eoln.html[/url] Bart -- ___ Lazarus mailing list

Re: [Lazarus] EndOfLine

2016-02-07 Thread Werner Pamler
I think Delphi 5 had help files in the .hlp format. On https://www.microsoft.com/en-us/download/details.aspx?id=40899 you find a MS program which allows you to show hlp files on Win 8.1. I did not test it, but it's worth a try. Am 07.02.2016 um 23:33 schrieb hfiandor: Dear Mr. Bart: Thanks

Re: [Lazarus] EndOfLine

2016-02-07 Thread ListMember
On 2016-02-08 00:33, hfiandor wrote: Thanks again, and if you know how to read the Delphi help with the Windos8.1, I will appreciate very much. does this help? https://support.microsoft.com/en-us/kb/917607 -- ___ Lazarus mailing list

Re: [Lazarus] EndOfLine

2016-02-07 Thread ListMember
You might also want to read this thead: http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_install/winhlp32-do-we-have-to-go-through-this-again/ddcc2f40-e4f3-407b-9672-ee8a2b08a71e?auth=1 Especially this one: Here is a solution (thanks to Komeil Bahmanpour): Go to his

Re: [Lazarus] Exclude components from localization by path or text

2016-02-07 Thread Denis Kozlov
On 31/01/2016 20:24, Denis Kozlov wrote: Modern translation software and some IDEs allow you to exclude certain text by: 1) Original text (e.g. "My Program Name") 2) Component path (e.g. TForm1.Label1.Caption) Can this feature be added to Lazarus IDE? Is there any interest in such feature?