Re: [Lazarus] gethostbyname() on linux systems.

2009-10-19 Thread ik
Please take a look at: ./fpc/packages/fcl-net/src/cnetdb.pp it's there :) Ido http://ik.homelinux.org/ On Mon, Oct 19, 2009 at 7:51 PM, David Touzeau da...@touzeau.eu wrote: Dear coders i have googleized but nothing. i try to find examples or any information in order to get the same

[Lazarus] Lazarus Path problems when creating new project

2009-10-29 Thread ik
Hello, When I create a new project in Lazarus, I'm making the following directory tree: src/project src/output src/forms src/units src/includes In the past, if I would have saved each file on it's proper location, the IDE would have added the path to the compiler location. But after trying it

Re: [Lazarus] Lazarus Path problems when creating new project

2009-10-29 Thread ik
Cool, it seems to work, thanks. Ido http://ik.homelinux.org/ On Fri, Oct 30, 2009 at 12:59 AM, Mattias Gaertner nc-gaert...@netcologne.de wrote: On Thu, 29 Oct 2009 16:14:14 +0200 ik ido...@gmail.com wrote: I'm using Lazarus 0.9.29 r22335M FPC 2.5.1 x86_64-linux-gtk 2 (beta

Re: [Lazarus] libgdk-1.2.so.0

2009-11-03 Thread ik
Have you installed this shared library on your own ? It means that the shared library is using big endian (while x86 based cpu are using little endian). It means that the parameters are reversed so data like 1020 will be 2010 and you need to convert each byte to it's place. Ido

Re: [Lazarus] ZeosLib and FPC 2.2.5

2009-11-04 Thread ik
the transaction to the database, so I do not know what else to use in Lazarus 64 bit. Ido http://ik.homelinux.org/ On Wed, Nov 4, 2009 at 11:10 AM, Marco van de Voort mar...@stack.nl wrote: On Wed, Nov 04, 2009 at 10:30:34AM +0200, ik wrote: I'm trying to install ZeosLib 6.6.5 on Lazarus 0.9.29 using

Re: [Lazarus] ZeosLib and FPC 2.2.5

2009-11-04 Thread ik
, Michael Van Canneyt mich...@freepascal.orgwrote: On Wed, 4 Nov 2009, ik wrote: Thanks, I updated the records (with the FPC version) and it compiles properly, but it seems that ZeosLib is not a 64 bit ready. It uses pointer of integer and I experience a lot of weird behavior regarding

[Lazarus] SQLDb Query Insert, Update vs SQL

2009-11-04 Thread ik
Hello, How exactly can I make the TSQLQuery work with the Insert query when I do insert action on TDBNavigator ? The same question with update. Thanks, Ido http://ik.homelinux.org/ -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] SQLDb Query Insert, Update vs SQL

2009-11-04 Thread ik
is mandatory and is null). Ido http://ik.homelinux.org/ On Wed, Nov 4, 2009 at 4:27 PM, Michael Van Canneyt mich...@freepascal.orgwrote: On Wed, 4 Nov 2009, ik wrote: Hello, How exactly can I make the TSQLQuery work with the Insert query when I do insert action on TDBNavigator ? The same

[Lazarus] Lazarus debug issues

2009-11-09 Thread ik
Hello list, Recently I've written a console application using Lazarus. It had an Access violation, and why gdb (that I used on my own) told me about one line, when I execute it on Lazarus, Lazarus pointed on a different line. It just happen that Lazarus pointed on the line where i should have

[Lazarus] OT Lazarus vs VS

2009-11-10 Thread ik
Hi list, Someone in the Israeli FOSS was in a lecture that claimed that Visual Studio is easier to develop then Delphi and Lazarus. When he started to ask the lecturer questions about their experience with Pascal, they had none. The person itself (that told me this), tried both Visual Studio and

[Lazarus] My guide for working with databases in Lazarus

2009-11-18 Thread ik
Hi, I published today the first part of my guide to use databases with Lazarus: http://idkn.wordpress.com/2009/11/18/less-painful-work-with-databases-first-part/ The translated version (using Google Translate):

[Lazarus] Datamodule and forms data aware components problem

2009-11-20 Thread ik
Hello, I'm using Lazarus 0.9.29 r22691M FPC 2.5.1 x86_64-linux-gtk 2 (beta). When I create a form and place in the uses section of the interface the data module, some forms with data aware components can find the datasource, while other forms with data aware components can not find the

Re: [Lazarus] Datamodule and forms data aware components problem

2009-11-20 Thread ik
:33 PM, Paul Ishenin webpi...@mail.ru wrote: ik wrote: The first form will find the datasource components on dmDatabases unit, while the second form will not. What am I missing here ? Lazarus has a different behavior comparing to Delphi. It does not search for the available components

[Lazarus] missing field in Fieldsdef

2009-11-20 Thread ik
Hello, I wrote query that does select in TSQLQuery. It gives me all the fields I made select on except one field named Address. When I execute the query inside the SQL property it does gives me the field, but not in fielddef window. The field name is address (if it is important). Any idea what

Re: [Lazarus] missing field in Fieldsdef

2009-11-21 Thread ik
Solved. The field was varchar with big size (2048). While firebird allow it, the TStringField seems to not like it. Ido http://ik.homelinux.org/ On Sat, Nov 21, 2009 at 1:38 AM, ik ido...@gmail.com wrote: Hello, I wrote query that does select in TSQLQuery. It gives me all the fields I

[Lazarus] Firebird's calculated field

2009-12-04 Thread ik
Hello, I tried to use the FieldKind of Calculated on a real calculated field from firebird, but instead of displaying the data inside the calculated field, it just displayed it it's type as a string. When I'm using it as Data, then the field content is displayed properly. Is there something that

Re: [Lazarus] Firebird's calculated field

2009-12-04 Thread ik
So what is the difference between internal calculated and calculated in that property ? Thanks, Ido http://ik.homelinux.org/ On Fri, Dec 4, 2009 at 1:42 PM, Luca Olivetti l...@wetron.es wrote: En/na ik ha escrit: Hello, I tried to use the FieldKind of Calculated on a real calculated

Re: [Lazarus] THtmlPort

2009-12-06 Thread ik
The code was not built for Linux 64 bit :( Ido http://ik.homelinux.org/ On Sun, Dec 6, 2009 at 7:43 PM, Phil Hess macp...@fastermac.net wrote: The THtmlPort package is much improved now: http://wiki.lazarus.freepascal.org/THtmlPort THtmlPort is a package of fairly impressive HTML viewers,

Re: [Lazarus] THtmlPort

2009-12-06 Thread ik
- ik ido...@gmail.com wrote: The code was not built for Linux 64 bit :( Ido http://ik.homelinux.org/ On Sun, Dec 6, 2009 at 7:43 PM, Phil Hess macp...@fastermac.net wrote: The THtmlPort package is much improved now: http://wiki.lazarus.freepascal.org/THtmlPort

[Lazarus] floating point mask

2009-12-07 Thread ik
Hello, I'm trying to create some sort of calculator for specific task. I require to allow to input only floating point or integer numbers. I thought to use TMaskEdit for it, but how can i tell it a rule to allow me arbitrary number length including a floating point on arbitrary position ? In

[Lazarus] TCustomEdit selection event

2009-12-07 Thread ik
Hello, Is there a way to register myself to a selection message in Lazarus for TCustomEdit based component that is cross platfrom ? I only need to know that someone selected something the rest I know how to get. Thanks, Ido http://ik.homelinux.org/ --

Re: [Lazarus] VoIP / SIP communication initiated from LCL apps | OFFTOPIC

2009-12-09 Thread ik
On Wed, Dec 9, 2009 at 12:52 AM, Graeme Geldenhuys graemeg.li...@gmail.comwrote: 2009/12/8 Helmut Hartl helmut.ha...@firmos.at: This seems you want to do 3rd party call control of a SIP device. Yes, I simply want to initiate a call from inside our application. The rest is then handled by

Re: [Lazarus] VoIP / SIP communication initiated from LCL apps | OFFTOPIC

2009-12-09 Thread ik
http://ik.homelinux.org/ On Wed, Dec 9, 2009 at 11:03 AM, Graeme Geldenhuys graemeg.li...@gmail.comwrote: 2009/12/9 ik ido...@gmail.com: I wrote some API for it for lnet (didn't released it though, but willing to release it as lgpl), and told Ales about it. Please let me know if you

Re: [Lazarus] floating point mask

2009-12-09 Thread ik
You are over engineering this. Here is what I did (not completed yet): TfrmCalculator = class (TForm) edtAmount : TEdit ; edtPerc : TEdit ; edtResult : TEdit ; procedure edtAmountKeyDown (Sender : TObject ; var Key : Word ; Shift : TShiftState ); procedure

[Lazarus] ctrl+j rename possible bug

2009-12-09 Thread ik
Hello, I'm using Lazarus 0.9.29 r23051M FPC 2.5.1 x86_64-linux-gtk 2 (beta) . I selected a whole procedure and used CTRL+J to rename a local variable and it's whole usage in the code like so: procedure a_test; var SelStart : integer; begin SelStart := Edit1.SelStart; ... end; When I

[Lazarus] OT: Happy new year

2009-12-31 Thread ik
Hello All, Sorry for the offtopic, but I wish you all happy new year. I hope that in 2010 we'll see Pascal, FPC and Lazarus become more main stream. Have a great new year and 2010, Ido http://ik.homelinux.org/ -- ___ Lazarus mailing list

Re: [Lazarus] OT: Happy new year

2010-01-02 Thread ik
Thanks Ido http://ik.homelinux.org/ 2009/12/31 Giuliano Colla giuliano.co...@fastwebnet.it I join Ido in wishing you all a very happy new year. To Ido, shana tova umetukah. Giuliano ik ha scritto: Hello All, Sorry for the offtopic, but I wish you all happy new year. I hope

[Lazarus] couchdb api in fpc/lazarus

2010-01-11 Thread ik
Hello, Have anyone know of an implementation of couchdbhttp://couchdb.apache.org/for FPC/Lazarus ? Thanks, Ido http://ik.homelinux.org/ -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] couchdb api in fpc/lazarus

2010-01-11 Thread ik
2010/1/11 Leonardo M. l.r...@griensu.com El lun, 11-01-2010 a las 16:33 +0100, Michael Van Canneyt escribió: On Mon, 11 Jan 2010, ik wrote: Hello, Have anyone know of an implementation of couchdbhttp://couchdb.apache.org/for FPC/Lazarus ? Why would you need one ? You can

Re: [Lazarus] couchdb api in fpc/lazarus

2010-01-11 Thread ik
http://ik.homelinux.org/ 2010/1/11 Michael Van Canneyt mich...@freepascal.org On Mon, 11 Jan 2010, ik wrote: 2010/1/11 Leonardo M. l.r...@griensu.com El lun, 11-01-2010 a las 16:33 +0100, Michael Van Canneyt escribió: On Mon, 11 Jan 2010, ik wrote: Hello, Have anyone know

Re: [Lazarus] LNet und QT

2010-01-12 Thread ik
On Tue, Jan 12, 2010 at 13:30, Thomas Moritz thm...@thmoritz.de wrote: Hello, build lnetvisual with Lazarus (qt) gives errors, but lnetbase is OK. (x86_64 _and_ i586 Lazarus svn) Here is the output: Free Pascal Compiler version 2.4.0 [2010/01/06] for x86_64 Copyright (c) 1993-2009 by

Re: [Lazarus] LNet und QT

2010-01-12 Thread ik
http://ik.homelinux.org/ On Tue, Jan 12, 2010 at 14:53, zeljko zel...@holobit.net wrote: On Tuesday 12 January 2010 13:23, ik wrote: As far as I know, lnet was never built to support QT. It requires you to implement some required methods and functions that are implemented for GTK 2

Re: [Lazarus] Wiki Search

2010-01-15 Thread ik
On Fri, Jan 15, 2010 at 20:56, Vincent Snijders vsnijd...@vodafonevast.nlwrote: dmitry boyarintsev schreef: On Fri, Jan 15, 2010 at 9:00 PM, Vincent Snijders vsnijd...@vodafonevast.nl wrote: If you mean a dump of the current mysql db, then no, that is not possible, because it contains

Re: [Lazarus] How do I Show Dynamically Created Visual Components?

2010-01-15 Thread ik
What about adding position of left and top and also Form1 as parent ? with TEdit.Create(Form1) do begin Visible:=True; Enabled:=True; Name:='TestEdit+IntToStr(i); /// Left := 50; top := 100; Parent := Form1;

[Lazarus] build modes

2010-01-18 Thread ik
Hello list, I found a new option at Compiler Options for a project. What exactly does it do and how do you work with it ? Thanks, Ido http://ik.homelinux.org/ -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

[Lazarus] Database connection manager

2010-01-18 Thread ik
Hello List, I'm looking for a database connection manager that allow me to manage any open query connection. What does it mean ? Well lets say I have two forms that can open the same query that is located in a DataModule, now I want to close the connection only when the last form that asked to

Re: [Lazarus] Lazarus on Tiny Core Linux

2010-01-18 Thread ik
On Mon, Jan 18, 2010 at 11:16, Graeme Geldenhuys graemeg.li...@gmail.comwrote: ajv wrote: Do you really think a mainstream distribution with fpGUI can beat this? Yes. fpGUI apps are smaller than Qt, GTK or LCL applications. Uses less memory too. fpGUI now supports Windows desktop OSes,

Re: [Lazarus] StatusBar Panels issue

2010-01-18 Thread ik
I think it is a bug (or at least a skin issue), because it used to work in the past (I think on 0.9.24 it worked). The text alignment also does not function (for me) there, and it used to align text properly on GTK 2. Ido http://ik.homelinux.org/ 2010/1/19 Graeme Geldenhuys

[Lazarus] lazarus editor coloring

2010-01-21 Thread ik
Hello list, I've noticed two things that are missing at Lazarus: 1. The ability to add/save new color style I'm making 2. Loading custom made coloring I always change the default coloring of Lazarus to extended the coloring, however I can't save it as a new coloring style. Moreover I've noticed

Re: [Lazarus] cursor image

2010-01-26 Thread ik
http://ik.homelinux.org/ On Tue, Jan 26, 2010 at 15:28, Paul Ishenin webpi...@mail.ru wrote: 26.01.2010 19:59, ik wrote: Is there a cross platform (or a GTK/QT solution if not) how to get from X,Y the mouse cursor handle and from there to translate it to it's original icon ? How

Re: [Lazarus] cursor image

2010-01-27 Thread ik
http://ik.homelinux.org/ On Tue, Jan 26, 2010 at 18:42, Hans-Peter Diettrich drdiettri...@aol.comwrote: ik schrieb: Is there a cross platform (or a GTK/QT solution if not) how to get from X,Y the mouse cursor handle and from there to translate it to it's original icon ? What do you

Re: [Lazarus] Sourceforge and Cuba

2010-02-02 Thread ik
http://ik.homelinux.org/ On Tue, Feb 2, 2010 at 18:19, Santiago A. s...@ciberpiula.net wrote: Hello: 1) It is unfair, when people from other countries (even Cuba o Iran ) contributed, they thought that sourceforge would be available for everybody, now they have changed the deal

Re: [Lazarus] Unable to install components

2010-02-09 Thread ik
On Tue, Feb 9, 2010 at 14:38, Osvaldo Filho arquivos...@gmail.com wrote: Ubuntu 9.10 64 Lazarus svn FPC 2.4.1 Problems: - Need permission on /usr/share/lazarus /usr/share/lazarus/components/codetools/codetoolsstrconsts.pas(280) Error: Writing Resource String Table file:

[Lazarus] qurstion in Button Alignment

2010-02-23 Thread ik
Hello, I wish to create a component that gives 10 buttons aligning 5 buttons on each side. The thing is, that I want to make both sides resize using anchors or something like that. The resizing should be both on width and height of the buttons but it can shrink up to a given size. The thing that

Re: [Lazarus] qurstion in Button Alignment

2010-02-23 Thread ik
2010/2/23 Mattias Gärtner nc-gaert...@netcologne.de Zitat von Duncan Parsons d.pars...@seamsltd.com: [...] I wish to create a component that gives 10 buttons aligning 5 buttons on each side. The thing is, that I want to make both sides resize using anchors or something like that. The

Re: [Lazarus] qurstion in Button Alignment

2010-02-24 Thread ik
On Tue, Feb 23, 2010 at 21:02, ik ido...@gmail.com wrote: 2010/2/23 Mattias Gärtner nc-gaert...@netcologne.de Zitat von Duncan Parsons d.pars...@seamsltd.com: [...] I wish to create a component that gives 10 buttons aligning 5 buttons on each side. The thing is, that I want to make

[Lazarus] New component by me TButtonList

2010-02-26 Thread ik
Hello all, Thanks to Mattias, I was able to create in a very easy manner a new component for Lazarus named TButtonList. The Button list allow you to create a list of buttons (TBitBtn) captions, hints and also find out what click was made. You can also choose how the layout will look like. You

Re: [Lazarus] My two wishes for the Message window of the IDE

2010-02-28 Thread ik
http://ik.homelinux.org/ On Sun, Feb 28, 2010 at 15:06, Pino Zollo pinozo...@gmail.com wrote: Hi everybody, -- I wish I were able to Copy (Ctl-C) a message that appears in the Message window, to be able to Paste it into a mail message to the forum. Press right click on the message and

Re: [Lazarus] My two wishes for the Message window of the IDE

2010-02-28 Thread ik
http://ik.homelinux.org/ On Sun, Feb 28, 2010 at 18:12, Pino Zollo pinozo...@gmail.com wrote: Il domenica 28 febbraio 2010 10:23:17 hai scritto: http://ik.homelinux.org/ On Sun, Feb 28, 2010 at 15:06, Pino Zollo pinozo...@gmail.com wrote: Hi everybody, -- I wish I were able to

[Lazarus] Lazarus downward

2010-03-08 Thread ik
Hello all, I haven't had time to go over all the discussion, but I wish to provide some of my points about things. 1. Open Source unlike commercial source is constantly under development until no one is interested in the project anymore. 2. Lazarus in the past two years had become one of the

[Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread ik
Hello, I've built lazarus today from few weeks ago to r23973. I had an open project while compiled Lazarus again. When Lazarus arrive back from compilation, it was unable to open the project. When I try to force it to open it, it just hangs until I'll kill it. I'm using Linux x86_64 with fpc

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread ik
http://ik.homelinux.org/ On Mon, Mar 15, 2010 at 19:45, Kjow antispamm...@gmail.com wrote: 2010/3/15 zeljko zel...@holobit.net: Probably newautosize bug. Try to rebuild lazarus with -dOldAutoSize and then try again to open your project. zeljko Building IDE with -dOldAutoSize option

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread ik
http://ik.homelinux.org/ On Mon, Mar 15, 2010 at 20:09, zeljko zel...@holobit.net wrote: Indeed it solved my problem. How can I migrate to the new AutoSize ? I don't think that you have to migrate to new autosize but wait until newautosize bugs fixed. Thanks zeljko --

Re: [Lazarus] svn r23973 unable to open old projects

2010-03-15 Thread ik
http://ik.homelinux.org/ On Mon, Mar 15, 2010 at 21:55, Kjow antispamm...@gmail.com wrote: 2010/3/15 zeljko zel...@holobit.net: Probably newautosize bug. Try to rebuild lazarus with -dOldAutoSize and then try again to open your project. zeljko How to recompile from command prompt

[Lazarus] settings dialog is unparinted

2010-03-24 Thread ik
Hello, In the past few weeks I can not see any content of the setting dialog when I open it, although every other dialog does appear properly. Is there anything I'm missing that should be set ? or config file that should be changed ? Thanks, Ido http://ik.homelinux.org/ --

Re: [Lazarus] settings dialog is unparinted

2010-03-25 Thread ik
http://ik.homelinux.org/ On Thu, Mar 25, 2010 at 01:45, Mattias Gaertner nc-gaert...@netcologne.dewrote: On Thu, 25 Mar 2010 00:47:22 +0200 ik ido...@gmail.com wrote: Hello, In the past few weeks I can not see any content of the setting dialog when I open it, although every other

Re: [Lazarus] Need help from windows users

2010-03-28 Thread ik
I'm experiencing the following: [WARNING] ShowModal called without handle for IDEOptionsDialog(TIDEOptionsDialog) Warning: TWinControl.DestroyHandle IDEOptionsDialog:TIDEOptionsDialog Handle not Allocated It does not crash, but not creating either. I'm using Arch Linux 64 bit with GTK Lazarus

Re: [Lazarus] [BIDI] TGrid and many bugs if i add Right To Left

2010-04-11 Thread ik
Personally I think that the entire approach of BiDi in Lazarus should be addressed differently. First of all Bidi must be part of the overall lookup of the entire project, that means that, any changes to LCL etc, must address it as well. Secondly, there must be proper guidelines of how we want to

Re: [Lazarus] [BIDI] TGrid and many bugs if i add Right To Left

2010-04-11 Thread ik
http://ik.homelinux.org/ 2010/4/11 Zaher Dirkey parm...@gmail.com 2010/4/11 ik addressed differently I am not understand the meaning of addressed or addressed by the project? (It is my English :) ) At the moment beside Windows, Lazarus does not support BiDi. The core team does not look

Re: [Lazarus] [BIDI] TGrid and many bugs if i add Right To Left

2010-04-13 Thread ik
You see that you have changed the position of 0,0 :P Ido http://ik.homelinux.org/ 2010/4/13 Zaher Dirkey parm...@gmail.com 2010/4/12 Jesus Reyes jesus...@yahoo.com.mx Hello Zaher, Please send to me the patches related to grids. Jesus Reyes A. Thanks Jesus for your replay, as

[Lazarus] Bidi TextOut in GTK2

2010-04-14 Thread ik
Hello, I'm working on adding BiDi support for TextOut in GTK2, and you can see the result. The text align itself according to the strong letters rather then the effect of bdRightToLeft and bdLeftToRight when Pango is in use. I still have few tests to make, and then I'll send a patch to mantis on

Re: [Lazarus] Bidi TextOut in GTK2

2010-04-14 Thread ik
I've added the code (after making sure I do not brake anything) here: http://bugs.freepascal.org/view.php?id=16271 Ido http://ik.homelinux.org/ On Wed, Apr 14, 2010 at 14:29, ik ido...@gmail.com wrote: Hello, I'm working on adding BiDi support for TextOut in GTK2, and you can see

Re: [Lazarus] Bidi TextOut in GTK2

2010-04-15 Thread ik
http://ik.homelinux.org/ On Thu, Apr 15, 2010 at 13:03, Marc Weustink marc.weust...@cuperus.nlwrote: ik wrote: Hello, I still have few tests to make, and then I'll send a patch to mantis on this subject. I also added to FPC's mantis (and not only to the extra file of gtk) the missing

Re: [Lazarus] Anyone done any work with SMS (text messaging)?

2010-04-24 Thread ik
If you own (or wish to own) a cellular modem, then I think http://www.kannel.org/index.shtml will provide you a solution. If you wish to use an existing SMS systems, then you have a lot of online services that provide it based on specific countries, that you can communicate using REST. Ido

[Lazarus] lazarus and patches

2010-05-04 Thread ik
Hello List, Zaher have posted 3 patches to add better BiDi support and also wrote about it in the malling list. It seems that the bug reports that contain the patches was not even looked at. The patches located at: http://bugs.freepascal.org/view.php?id=16387

Re: [Lazarus] Bug reports to close

2010-05-05 Thread ik
On Wed, May 5, 2010 at 13:46, zeljko zel...@holobit.net wrote: On Wednesday 05 May 2010 10:59, ik wrote: Hello, I went over my opened bug reports, and found that 3 out of 4 are fixed already. I do not have permissions to close my reports, though. Here are the bug reports: http

Re: [Lazarus] lowest libgtk2 supported version

2010-05-09 Thread ik
On Sun, May 9, 2010 at 05:52, Jonathan winelauncher.jonat...@googlemail.com wrote: On Sat, 8 May 2010 22:37:56 +0300 Zaher Dirkey parm...@gmail.com wrote: Because we need to remove of use {$ifdef GTK_2_8} in gtk2 widgets. How can I check that Lazarus is built with the GTK_2_8 define set or

Re: [Lazarus] Suggestion: Remove GTK1 support from IDE and LCL.

2010-05-15 Thread ik
http://ik.homelinux.org/ On Sat, May 15, 2010 at 12:23, Florian Klaempfl flor...@freepascal.orgwrote: Graeme Geldenhuys schrieb: On 15 May 2010 11:02, Florian Klaempfl flor...@freepascal.org wrote: is already at 2.30 and LCL-GTK2 still says we only support from GTK 2.4/2.6 yet all modern

Re: [Lazarus] Suggestion: Remove GTK1 support from IDE and LCL.

2010-05-15 Thread ik
On Sat, May 15, 2010 at 12:25, ik ido...@gmail.com wrote: http://ik.homelinux.org/ On Sat, May 15, 2010 at 12:23, Florian Klaempfl flor...@freepascal.orgwrote: Graeme Geldenhuys schrieb: On 15 May 2010 11:02, Florian Klaempfl flor...@freepascal.org wrote: is already at 2.30 and LCL

Re: [Lazarus] Suggestion: Remove GTK1 support from IDE and LCL.

2010-05-15 Thread ik
http://ik.homelinux.org/ On Sat, May 15, 2010 at 22:51, silvioprog silviop...@gmail.com wrote: Em 15-05-2010 16:41, Bart escreveu: On 5/15/10, Felipe Monteiro de Carvalho felipemonteiro.carva...@gmail.com wrote: If I was the gtk2 maintainer, I would increase the minimum to 2.12,

[Lazarus] changing ide direction

2010-05-18 Thread ik
Hello list, I wish to make the IDE to be bdRightToLeft when the IDE translated either to Arabic or Hebrew. Except of the editor and Object Inspector I think that every window should be bdRightToLeft. So where/how can I do that, and what do you think on it ? Thanks, Ido http://ik.homelinux.org/

Re: [Lazarus] changing ide direction

2010-05-19 Thread ik
http://ik.homelinux.org/ 2010/5/19 Zaher Dirkey parm...@gmail.com On Wed, May 19, 2010 at 2:54 AM, Paul Ishenin i...@kmiac.ru wrote: 19.05.2010 5:27, ik пишет: I wish to make the IDE to be bdRightToLeft when the IDE translated either to Arabic or Hebrew. Except of the editor and Object

Re: [Lazarus] changing ide direction

2010-05-19 Thread ik
I've created a small patch for it, you can see the images in the bug report :) There is still a lot work to do, but that's a start :) The bug report: http://bugs.freepascal.org/view.php?id=16516 Ido http://ik.homelinux.org/ On Wed, May 19, 2010 at 11:41, ik ido...@gmail.com wrote: http

[Lazarus] TRichView and scrolling

2011-12-05 Thread ik
Hello List, How can I always make sure that TRichView (out of CCR) display the last available line, and scroll down if needed for it ? Thanks, Ido -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] Petition to Skype

2011-12-06 Thread ik
On Tue, Dec 6, 2011 at 19:18, Andreas Schneider ak...@gmx.de wrote: On Tuesday, December 6, 2011, at 17:32 Marco Ciampa wrote: On Tue, Dec 06, 2011 at 03:25:58PM +0200, Juha Manninen wrote: 2011/12/6 Marco van de Voort mar...@stack.nl You do realize that Skype is now Microsoft?

[Lazarus] Fwd: PPU checksum issue

2011-12-13 Thread ik
-- Forwarded message -- From: ik ido...@gmail.com Date: Tue, Dec 13, 2011 at 20:31 Subject: Re: PPU checksum issue To: FPC-Pascal users discussions fpc-pas...@lists.freepascal.org It only happen on Lazarus. normal app does not raise such error. On Tue, Dec 13, 2011 at 18:55

Re: [Lazarus] [fpc-pascal] Re: PPU checksum issue

2011-12-13 Thread ik
On Tue, Dec 13, 2011 at 22:14, leledumbo leledumbo_c...@yahoo.co.id wrote: Old PPU of base64, try recompiling everything (because there's a chance that more packages are having the same problem), make a clean build if possible. A clean svn version of fpc 2.6.0 (rc), and Lazarus 0.9.31 r34161

Re: [Lazarus] [fpc-pascal] Re: PPU checksum issue

2011-12-13 Thread ik
On Tue, Dec 13, 2011 at 23:40, Mattias Gaertner nc-gaert...@netcologne.dewrote: On Tue, 13 Dec 2011 23:08:39 +0200 ik ido...@gmail.com wrote: On Tue, Dec 13, 2011 at 22:14, leledumbo leledumbo_c...@yahoo.co.id wrote: Old PPU of base64, try recompiling everything (because there's

[Lazarus] g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed

2011-12-14 Thread ik
Hello, I've created a short examplehttps://github.com/ik5/libnotify-fpc/blob/master/tests/test_notify.lprto display how to use libnotify in Pascal. The problem is that I'm getting the following exception: (process:7633): GLib-CRITICAL **: g_variant_new_string: assertion `g_utf8_validate (string,

Re: [Lazarus] RE : g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed

2011-12-14 Thread ik
2011/12/14 Ludo Brands ludo.bra...@free.fr ** Hello, I've created a short examplehttps://github.com/ik5/libnotify-fpc/blob/master/tests/test_notify.lprto display how to use libnotify in Pascal. The problem is that I'm getting the following exception: (process:7633): GLib-CRITICAL

Re: [Lazarus] RE : RE : g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed

2011-12-14 Thread ik
2011/12/14 Ludo Brands ludo.bra...@free.fr ** -Message d'origine- *De :* ik [mailto:ido...@gmail.com] *Envoyé :* mercredi 14 décembre 2011 17:05 *À :* Lazarus mailing list *Objet :* Re: [Lazarus] RE : g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed

Re: [Lazarus] RE : RE : RE : g_variant_new_string: assertion `g_utf8_validate (string, -1, NULL)' failed

2011-12-14 Thread ik
On Wed, Dec 14, 2011 at 19:42, Ludo Brands ludo.bra...@free.fr wrote: A small suggestion for the example: test the libnotify version. The header conversion is based on 0.7.0 which is fairly recent. Ubuntu 10.04, the latest LTS, still only has version 0.4.5. The example crashes miserably with

Re: [Lazarus] TMainMenu is not displayed

2011-12-15 Thread ik
On Thu, Dec 15, 2011 at 23:54, Bart bartjun...@gmail.com wrote: I do not see the Menu in untdisplayquotes.lfm ( https://github.com/ik5/display-quotes/blob/master/src/forms/untdisplayquotes.lfm ) Only a speedbutton and an action with Find quote as a caption. After a lot of frustration and

[Lazarus] Run-time packages create a register unit

2011-12-22 Thread ik
Hello, I'm creating a run-time package, but it seems that Lazarus also create a register unit with the package itself. Why is that, if I do not wish to register components, but only add units to path, and how can I avoid it ? Thanks, Ido -- ___ Lazarus

Re: [Lazarus] Run-time packages create a register unit

2011-12-22 Thread ik
2011/12/22 michael.vancann...@wisa.be On Thu, 22 Dec 2011, Mattias Gaertner wrote: ik ido...@gmail.com hat am 22. Dezember 2011 um 11:04 geschrieben: Hello, I'm creating a run-time package, but it seems that Lazarus also create a register unit with the package itself. Why

[Lazarus] TFrame and buttons

2012-01-17 Thread ik
Hello, I'm Writing my hobby application (https://github.com/ik5/display-quotes/), and I decided to use TFrame for the search window. The thing is that when I add code to the Prev and Next buttons, They do not get execute on the main form. It looks like Lazarus events are looking for events at the

Re: [Lazarus] TFrame and buttons

2012-01-17 Thread ik
2012/1/17 Mattias Gaertner nc-gaert...@netcologne.de ** ik ido...@gmail.com hat am 17. Januar 2012 um 14:22 geschrieben: Hello, I'm Writing my hobby application ( https://github.com/ik5/display-quotes/), and I decided to use TFrame for the search window. The thing is that when I add

[Lazarus] CodeTools can not generate my code

2012-01-29 Thread ik
Hello, I've created a class in Lazarus, defined some procedures, and pressed on CTRL+SHIFT+C to add them to implementation. I got the following error instead in an existed constructor of a different class: redis_client/src/rd_commands.pas(128,28) Error:

Re: [Lazarus] Hello World program generates a File Not Open runtime error

2012-01-29 Thread ik
On Sun, Jan 29, 2012 at 17:13, Antônio antoniog12...@gmail.com wrote: Maybe something could be done to make things easier for Windows users? Sure, they can move to Linux :) But you can fill in a bug report and request to add the the templates and IFDEF for windows that add console mode, or

Re: [Lazarus] CodeTools can not generate my code

2012-01-29 Thread ik
On Sun, Jan 29, 2012 at 17:38, Mattias Gaertner nc-gaert...@netcologne.dewrote: On Sun, 29 Jan 2012 15:54:35 +0200 ik ido...@gmail.com wrote: Hello, I've created a class in Lazarus, defined some procedures, and pressed on CTRL+SHIFT+C to add them to implementation. I got

Re: [Lazarus] Server Problems ?

2012-02-05 Thread ik
2012/2/5 Samuel Herzog sam_her...@yahoo.com Hi, is this just me ? I have problems to get the lazarus web-page loaded. Works for me Regards, Sam -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] semaphores

2012-02-09 Thread ik
On Thu, Feb 9, 2012 at 10:16, Antonio Fortuny a.fort...@sitasoftware.luwrote: Le 08/02/2012 19:58, waldo kitty a écrit : On 2/8/2012 08:53, Henry Vermaak wrote: On 08/02/12 13:26, Michael Schnell wrote: Why not just use a file ? Is there a cross platform file locking solution in fpc?

[Lazarus] OT: Is there a Lazarus/FPC community in Australia ?

2012-02-11 Thread ik
Hello, I'm interesting in knowing if there is an open source community in Australia for FPC/Lazarus. People who does lectures, meetings etc.. ? Thanks, Ido -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] an application that dont work

2012-02-12 Thread ik
On Sun, Feb 12, 2012 at 18:01, Ing. Héctor F. Fiandor Rosario hfian...@infomed.sld.cu wrote: Dear friends: i have an unusual problem: i have prepared a simple application to edit a TDbf table. now i have two forms only and when i execute the exe file the first works well, but when i try

[Lazarus] Should the at word be painted as reserved word ?

2012-02-12 Thread ik
Hello, The Following code: Raise Exception.Create('') at get_caller_frame(get_frame); Does not paint the at code as reserve word. It is not a reserved word according to the documentation, but on this specific case, it act as one imho. Do you think like me, that it should be painted on this

Re: [Lazarus] Should the at word be painted as reserved word ?

2012-02-14 Thread ik
On Mon, Feb 13, 2012 at 19:30, Martin laza...@mfriebe.de wrote: On 13/02/2012 16:49, Martin wrote: On 13/02/2012 08:19, Hans-Peter Diettrich wrote: Martin schrieb: 2. In declaration of external functions like the following procedure P; external 'someLib' name 'someName'; the name is

Re: [Lazarus] How about Ctrl+Shift+Alt+Space completes code with empty values.

2012-02-14 Thread ik
On Tue, Feb 14, 2012 at 19:43, Everton Vieira tonvie...@gmail.com wrote: How about Ctrl+Shift+Alt+Space completes the code with empty values. Like this: Trim(); After Ctrl+Shift+Alt+Space inside that parentheses makes this: Trim(''); Just, another idea. :) Or the CTRL+SHIFT+C

[Lazarus] i'm looking for tips on debugging deep nested code with recursive functions

2012-02-15 Thread ik
Hello, I have a code with a lot of loops and recursive calls. Somewhere at the code, at some point, I think I have an Off By One or something similar that happens that break my code. The question is, how would you suggest to compile such complicated calls to figure out where the problem/s exists

Re: [Lazarus] i'm looking for tips on debugging deep nested code with recursive functions

2012-02-15 Thread ik
On Wed, Feb 15, 2012 at 13:59, Everton Vieira tonvie...@gmail.com wrote: Em 15/02/2012, às 09:49, ik escreveu: Hello, I have a code with a lot of loops and recursive calls. Somewhere at the code, at some point, I think I have an Off By One or something similar that happens that break my

Re: [Lazarus] i'm looking for tips on debugging deep nested code with recursive functions

2012-02-15 Thread ik
On Wed, Feb 15, 2012 at 14:19, ik ido...@gmail.com wrote: On Wed, Feb 15, 2012 at 13:59, Everton Vieira tonvie...@gmail.com wrote: Em 15/02/2012, às 09:49, ik escreveu: Hello, I have a code with a lot of loops and recursive calls. Somewhere at the code, at some point, I think I have an Off

  1   2   3   4   >