Re: [lazarus] Using XML-RPC with Lazarus/FPC ...

2005-08-27 Thread Joao Morais
architecture). A new version is in work and (hopefully!) is ready to go soon. Hi Sebastian, Plans to include SOAP? Thanks, -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject

Re: [lazarus] Segmentation fault starting Lazarus

2005-08-29 Thread Joao Morais
0x4e15 in ?? () No symbol table info available. (gdb) = -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

[lazarus] Shortcut sugestions

2005-09-01 Thread Joao Morais
window (Alt+Letter would be perfect, but a simple key, like F10, will help as well). Thank you, -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] turboCASH on Lazarus proof of concept

2006-03-10 Thread Joao Morais
telling this to show our trust in Lazarus. I'll continue the port of the InstantObjects framework to FPC just after v2.0 is out, let me know if you need something (or let me know when you start something). -- Joao Morais

Re: [lazarus] turboCASH on Lazarus proof of concept

2006-03-10 Thread Joao Morais
Michael Van Canneyt wrote: On Fri, 10 Mar 2006, Joao Morais wrote: Michael Van Canneyt wrote: I'm currently writing specs for a 'serious' application (a grade tracker for teachers) which will use (embedded) firebird as a back-end database, which will be using tiOPF or InstantObjects

[lazarus] ComboBox issues

2006-11-22 Thread Joao Morais
the next issue... Thanks, -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

[lazarus] Expert for Lazarus

2007-01-28 Thread Joao Morais
that I can follow to make safe changes to them. About events, where should I look for beforecompile, aftersave and another ide events? Thanks, -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] Expert for Lazarus

2007-02-02 Thread Joao Morais
Mattias Gaertner wrote: On Sun, 28 Jan 2007 11:50:47 -0200 Joao Morais [EMAIL PROTECTED] wrote: Hello, About changing source code, afaics I have access to an specific source file using srceditorintf.SourceEditorWindow.SourceEditorIntfWithFileName('someunit.pas'). Inside

Re: [lazarus] Anybody on this list use Firebird database with Lazarus?

2007-03-29 Thread Joao Morais
Firebird database with Lazarus? I'm looking for general information on this, and I ran into a dead end while trying to find the ODBC drivers, so I'm hoping somebody here has found a better way -- or knows where to find those drivers. -- Joao Morais

Re: [lazarus] [patch] - LCL for fpGUI

2007-04-10 Thread Joao Morais
. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] TControl and public Color property???

2007-05-07 Thread Joao Morais
this feature would be welcome, eg tcustomedit.text, tcustomcheckbox.checked, but you can use the following workaround when necessary: type tcustomeditfriend = class(tcustomedit); ... tcustomeditfriend(edit).edit := 'value'; -- Joao Morais

Re: [lazarus] TControl and public Color property???

2007-05-07 Thread Joao Morais
Vincent Snijders wrote: Joao Morais schreef: Vincent Snijders wrote: An advantage of having it public, is that you can pass a TControl to the widget interface and it can access the Color property without resorting to cast to decendants. I don't know if this technique is actually used though

Re: [lazarus] TControl and public Color property???

2007-05-07 Thread Joao Morais
Graeme Geldenhuys wrote: On 5/7/07, Joao Morais [EMAIL PROTECTED] wrote: An advantage of having it public, is that you can pass a TControl to the widget interface and it can access the Color property without resorting to cast to decendants. I don't know if this technique is actually used

Re: [lazarus] Recent SVN lazarus won't compile. Can't find unitcontnrs.

2007-05-26 Thread Joao Morais
Flávio Etrusco wrote: Your build environment is messed up. Format your partition and reinstall the OS. Alright, just kidding. Partially. IOW perhaps you have more than one compiled contnrs that can be reached by the compiler, and the compiler found the wrong one. -- Joao Morais On 5/26

Re: [lazarus] Report Tools for Lazarus

2007-06-09 Thread Joao Morais
expecting. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Report Tools for Lazarus

2007-06-09 Thread Joao Morais
Graeme Geldenhuys wrote: On 09/06/07, Joao Morais [EMAIL PROTECTED] wrote: I am using FreeReport with Delphi and building reports in runtime against a business class model. I am using a wrapper to the TUserDefinedDataSet (don't remember the exact name) class. This has been This sounds like

[lazarus] Is the F2 shortcut in a popup menu working?

2007-06-14 Thread Joao Morais
Hello, I have some popup menus assigned to components. Taking all shortcuts I have used so far, only the F2 seems to be not working. Something I am missing? Thanks, -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED

[lazarus] StringGrid.ClientWidth does not count scroll bar

2007-06-14 Thread Joao Morais
Hello, The ClientWidth method does not count the vertical scroll bar width. Is this by default? This is inconsistent with Delphi, so if this is by default I know I need to implement a workaround =) Thanks. -- Joao Morais

Re: [lazarus] StringGrid.ClientWidth does not count scroll bar

2007-06-15 Thread Joao Morais
aware of this. My implementation works perfectly using vcl. Thanks. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Is the F2 shortcut in a popup menu working?

2007-06-15 Thread Joao Morais
Graeme Geldenhuys wrote: What platform and widgetset are you using? Linux gtk1, fpc 2.1.4 and lazarus trunk; windows, lazarus 0.9.20. On 15/06/07, Joao Morais [EMAIL PROTECTED] wrote: Hello, I have some popup menus assigned to components. Taking all shortcuts I have used so far, only

Re: [lazarus] StringGrid.ClientWidth does not count scroll bar

2007-06-15 Thread Joao Morais
Micha Nelissen wrote: Joao Morais wrote: The ClientWidth method does not count the vertical scroll bar width. Is this by default? This is inconsistent with Delphi, so if this is by default I know I need to implement a workaround =) The ClientWidth is the space available for client controls

Re: [lazarus] CodeTools and a GUI Class Builder

2007-06-15 Thread Joao Morais
need to create hundreds of Business Objects. This is exactly what I am planning to do. What I have implemented so far: a pascal parser, a code updater and a model that stores project data. -- Joao Morais _ To unsubscribe

Re: [lazarus] CodeTools and a GUI Class Builder

2007-06-16 Thread Joao Morais
Graeme Geldenhuys wrote: On 15/06/07, Joao Morais [EMAIL PROTECTED] wrote: This is exactly what I am planning to do. What I have implemented so far: a pascal parser, a code updater and a model that stores project data. Out of interest... Why did you create a new pascal parser and code

Re: [lazarus] Combo.OnClick

2007-06-18 Thread Joao Morais
Joao Morais wrote: Hello, The ComboBox.OnClick event is *being* fired when the user opens the combo and is *not being* fired when the user click on the option (and the combo is closed). Is this a bug or is this by default? Something here? If this is really a bug I can try a fix

Re: [lazarus] Combo.OnClick

2007-06-18 Thread Joao Morais
event shouldn't be fired when the user opens the combo, there is another event to accomplish this. Thanks. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Combo.OnClick

2007-06-18 Thread Joao Morais
Felipe Monteiro de Carvalho wrote: On 6/18/07, Joao Morais [EMAIL PROTECTED] wrote: I would expect onclick fired when the user chooses another option. There is OnChange for that. This is fired when the text is changed. I need an event that says when the index is changed. The onclick

Re: [lazarus] Combo.OnClick

2007-06-18 Thread Joao Morais
Felipe Monteiro de Carvalho wrote: On 6/18/07, Joao Morais [EMAIL PROTECTED] wrote: This is fired when the text is changed. I need an event that says when the index is changed. I thougth OnChange would do that ... doesn't it activate when you change to another option and it has the same

Re: [lazarus] Combo.OnClick

2007-06-18 Thread Joao Morais
Luiz Americo Pereira Camara wrote: Joao Morais wrote: OnClick doesn't mean exactly a click, you have OnMouseDown to accompish this. OnClick means that the user sent information to the control, and this doesn't happen when he open a combo (not usually). Did you tried OnSelect? Hei, nice

[lazarus] combobox.clear under win32 clears text property

2007-06-19 Thread Joao Morais
in the TWin32ListStringList.Clear method, win32listsl.inc file. Is there something that could be improved here? Thanks. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives

Re: [lazarus] Using interfaces to get compiler warnings

2007-06-26 Thread Joao Morais
=) -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Using interfaces to get compiler warnings

2007-06-26 Thread Joao Morais
reference to instantiate an abstract class. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Wince windows crosscompile installer

2007-07-02 Thread Joao Morais
that requires the lastest fpc to compile. So don't install the IDE, but download the fpc and lazarus from the sources plus the fpcbuild repository, compile both projects (just a make clean all in the console), create a shortcut and enjoy. -- Joao Morais

Re: [lazarus] Emulate Php Md5 (Crypt) and Sha1

2007-07-03 Thread Joao Morais
(CRYPT_MD5,1); [...] $c=crypt($pg,$s); // CRYPT DI pg in base a s $code=sha1($TEXT.$DEST) fpc has an md5 unit. Don't know about sha1, look for Delphi Encryption Compendium. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] VOOE Programming.

2007-08-20 Thread Joao Morais
. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] report writer 4 Lazarus?

2007-08-22 Thread Joao Morais
event can be used to convert that object member name to the real value. (Umm, not sure if I asked this before?) You did, and I said PressObjects implements such approach against Fast and FreeReport. -- Joao Morais

Re: [lazarus] Delphi Source/Samples/*.pas units

2007-10-29 Thread Joao Morais
Graeme Geldenhuys wrote: I'll try and find a support email for CodeGear and see what they say. Try borland.public.delphi.non-technical at newsgroups.borland.com. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] Free method of any object didn't executes.

2007-11-06 Thread Joao Morais
an override; after the destroy declaration neither saw the warning the compiler issued to you. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-08 Thread Joao Morais
working in an IO-like project with a smarter, faster and more customizable OPF engine, decoupled frameworks (after all data type and opf aren't the same thing), no dbware or tdataset dependency, and the best item: no backward compatibility to bother. www.pressobjects.org -- Joao Morais

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-09 Thread Joao Morais
Al Boldi wrote: Joao Morais wrote: I am currently working in an IO-like project with a smarter, faster and more customizable OPF engine, decoupled frameworks (after all data type and opf aren't the same thing), no dbware or tdataset dependency, and the best item: no backward compatibility

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-09 Thread Joao Morais
(tied with) db engine You can change every part without changing the others. A small overhead do exist actually, and the way to remove it is writing a connection broker that doesn't depend of a db suite like SQLdb or Zeos, and that doesn't depend of the tdataset as well. -- Joao Morais

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-09 Thread Joao Morais
an abstract data access to improve speed as much as possible (or as I can) -- writing wrappers to database APIs in future versions. Have a look in the code. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-09 Thread Joao Morais
Al Boldi wrote: Joao Morais wrote: 1. the real bottleneck is in the database and in the network; Correct. Let's call this the server-side, which isn't under our control. Sometimes it is, eg building smart DMLs and smart strategies to retrieve data, using prepared statements when possible

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-09 Thread Joao Morais
in a single line, and the MVP will do the rest for you using informations from the model. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Lazarus and InstantObjects ?

2007-11-10 Thread Joao Morais
, or to the support mailing list so others interested in this thread can follow. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org

Re: [lazarus] Lazarus 0.9.24 Congrats

2007-11-28 Thread Joao Morais
help, you have Ctrl+Click, Ctrl+Space, fpc docs and Google ;) The debugger and the maturity of the visual classes of the VCL are the big advantages of Delphi, IMHO. -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] vote for bdd related component icon

2007-12-11 Thread Joao Morais
Roberto Padovani wrote: I would leave the bitmap of a grid only for grids. +1 my .02 Now .04 -- Joao Morais _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http