Re: [lazarus] Not quite sure about if then construction

2006-06-06 Thread Tomas Gregorovic
John Meyer napsal(a): if i_Error <> 0 then begin d_SalesTax := 0; end; <- you should remove the semicolon (";") after "end" keyword else <---line that is giving me the error if d_SalesTax > 0 then begin d_SalesTax := d_SalesTax / 10

Re: [lazarus] Anybody know what is wrong here ?

2006-05-20 Thread Tomas Gregorovic
A.J. Venter napsal(a): I'm trying to extend my tsimple_html component so it can read from a tstringlist property instead of a URL (which in many [at least of my] programs could severely reduce overhead). So I basically just added a tstringlist property exactly as I have always done it before (

Re: [lazarus] Is this a bug?

2006-04-29 Thread Tomas Gregorovic
barko napsal(a): on lazarus for linux (latest svn) it work this ok On Fri, 28 Apr 2006 23:51:32 +0200, ArĂ­ Ricardo Ody <[EMAIL PROTECTED]> wrote: I'm developing a project when I open a screen where the user must type a password in a TEdit box. I select emPassword in the EchoMode propert

[lazarus] Patch for TImage.Transparent

2006-04-03 Thread Tomas Gregorovic
Hi, this is only small patch which causes to change Image.Picture.Graphic.Transparent if Image.Transparent is changed. This is same how Delphi behave. tombo Index: lcl/include/customimage.inc === --- lcl/include/customimage.inc (re

Re: [lazarus] Patch for TBitmap Mask proposal

2006-04-03 Thread Tomas Gregorovic
Mattias Gaertner napsal(a): On Fri, 31 Mar 2006 12:36:27 +0200 Tomas Gregorovic <[EMAIL PROTECTED]> wrote: Mattias Gaertner napsal(a): On Thu, 30 Mar 2006 15:23:08 +0200 Tomas Gregorovic <[EMAIL PROTECTED]> wrote: Tomas Gregorovic napsal(a):

Re: [lazarus] Patch for TBitmap Mask proposal

2006-03-30 Thread Tomas Gregorovic
Tomas Gregorovic napsal(a): And where do you actually create the alpha mask? I create the aplha mask in function CreateBitmapMask. I draw source bitmap to monochromatic mask bitmap using a trick which changes the transparent color to white in the mask bitmap. I am not sure if it is

Re: [lazarus] Patch for TBitmap Mask proposal

2006-03-29 Thread Tomas Gregorovic
Mattias Gaertner napsal(a): On Mon, 27 Mar 2006 15:29:44 +0200 Tomas Gregorovic <[EMAIL PROTECTED]> wrote: Mattias Gaertner napsal(a): On Mon, 13 Mar 2006 11:09:19 +0100 Tomas Gregorovic <[EMAIL PROTECTED]> wrote: Mattias Gaertner napsal(a): On

Re: [lazarus] Patch for TBitmap Mask proposal

2006-03-27 Thread Tomas Gregorovic
Mattias Gaertner napsal(a): On Mon, 13 Mar 2006 11:09:19 +0100 Tomas Gregorovic <[EMAIL PROTECTED]> wrote: Mattias Gaertner napsal(a): On Fri, 10 Mar 2006 14:15:44 +0100 Tomas Gregorovic <[EMAIL PROTECTED]> wrote: Hi, finally I have finished my long battle a

Re: [lazarus] StringGrid Editor, Columns Editor and FindInFiles Dialog converted to lfm

2006-02-17 Thread Tomas Gregorovic
Alexsander Rosa napsal(a): Is there a wish list of conversion to lfm? Yes, have a look at here: http://wiki.lazarus.freepascal.org/index.php/GUI_design. tombo 2006/2/17, Mattias Gaertner <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>: On Mon, 06 Feb 2006 14:12:07 +01

Re: [lazarus] Lazarus as debugger GUI?

2006-02-14 Thread Tomas Gregorovic
Vincent Snijders napsal(a): Mattias Gaertner wrote: On Tue, 14 Feb 2006 11:01:50 +0100 Tomas Gregorovic <[EMAIL PROTECTED]> wrote: Hi, maybe it's a stupid question, but is it possible to use Lazarus IDE as a GUI for debugging already built applications with debugger info

[lazarus] Lazarus as debugger GUI?

2006-02-14 Thread Tomas Gregorovic
Hi, maybe it's a stupid question, but is it possible to use Lazarus IDE as a GUI for debugging already built applications with debugger info and pascal source without need to recompile them? This question is mainly aimed at debugging Lazarus IDE. Thanks for your answers. tombo __

Re: [lazarus] Re: Some questions on Identifier Completion of TSourceNotebook

2006-01-17 Thread Tomas Gregorovic
Funky Beast napsal(a): Mattias Gaertner wrote: On 16 Jan 2006 21:36:09 +0100 Darius Blaszijk <[EMAIL PROTECTED]> wrote: On Mon, 2006-01-16 at 19:59, Mattias Gaertner wrote: What we need: 1. a hint window to right of the completion box. 2. the search for the fpdoc/xml path 3. the parsing of

[lazarus] Patch for CharacterMapDlg

2006-01-11 Thread Tomas Gregorovic
Hi, I have modified Character Map Dialog so that it inserts the characters right into the source editor. I have also replaced improper TSynEdit with the TStringGrid. This patch also includes fix for not always functioning read-only state of source editor(e. g. Insert Text method, Replace, ...).

Re: [lazarus] Small patch for NewDialog and UnitInfoDlg

2006-01-10 Thread Tomas Gregorovic
Mattias Gaertner napsal(a): On Mon, 09 Jan 2006 18:30:21 +0100 Tomas Gregorovic <[EMAIL PROTECTED]> wrote: Unit Info Dialog - the Show CodeTools Values' Button was not anchored and memos were not read-only. Thanks. Applie