Re: [lazarus] TStringGrid Keypress event

2006-12-05 Thread Jesus Reyes
___ > > To unsubscribe: mail [EMAIL PROTECTED] with > > "unsubscribe" as the Subject > >archives at http://www.lazarus.freepascal.org/mailarchives > > > Thanks applied in r10301 Jesus Reyes A. _

Re: [lazarus] OI changes via property editor?

2006-12-26 Thread Jesus Reyes
it it's properties in object inspector do: Designer.SelectOnlyThisComponent(TheComponentInstace); To clear selection: Desginer.SelectOnlyThisComponent(nil); If you make changes call Designer.Modified; Jesus Reyes A. If for example you are editing a form at design time,

[lazarus] Can't type [] {} in code editor under linux

2006-12-29 Thread Jesus Reyes
NG] Key pressed without VKey: K=0x5D S="]" [WARNING] Key event without VKey: K=0x5D S="]" [WARNING] Key event without VKey: K=0x5D S="]" Jesus Reyes A. __ Corre

Re: [lazarus] Can't type [] {} in code editor under linux

2006-12-29 Thread Jesus Reyes
--- Marc Weustink <[EMAIL PROTECTED]> escribió: > Michael Van Canneyt wrote: > > > > On Fri, 29 Dec 2006, Jesus Reyes wrote: > > Both thanks for reporting. I've made some keyboard routines more > strict. > In the old situation a random key could get repo

Re: [lazarus] Can't type [] {} in code editor under linux

2006-12-31 Thread Jesus Reyes
;> Michael Van Canneyt wrote: > >>>>> On Sat, 30 Dec 2006, Marc Weustink wrote: > >>>>> > >>>>>> Michael Van Canneyt wrote: > >>>>>>> On Fri, 29 Dec 2006, Jesus Reyes wrote: > >>>>>> Bot

Re: [lazarus] Printer and [X|Y]dpi with Linux

2007-01-06 Thread Jesus Reyes
cript uses the "user space" coordinate system, where the "length of a unit along both x and y axes is 1/72 inch". Then 72 is the natural postcript dpi resolution. > Here is running: > Suse10.1 > fpc 2.1.1 svn > lazarus 0.9.21 svn > > You can help? > >

Re: [lazarus] I need a printer mono font

2007-01-06 Thread Jesus Reyes
urier New" isn`t monospace after printing. > I open a new Thread for this reason. > > Regards Th. Moritz To be sure to get a monospaced printed font under cups, use 'monospaced' font name. You can take a look at currrent implementation on file lazarus/lcl/postscriptcanvas.pas,

Re: [lazarus] TSemaphorGrid in lastest Lazarus (svn)

2007-01-11 Thread Jesus Reyes
ids_Reference_Page > Custom drawing howto is yet to be written, will try to find some time next weekend. > -- > Graeme Geldenhuys > > There's no place like S34° 03.168' E018° 49.342' > Jesus Reyes A. _

Re: [lazarus] [patch] - Grid Semaphor example

2007-01-12 Thread Jesus Reyes
- > Graeme Geldenhuys > Thanks, Applied. Jesus Reyes A. ___ Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo po

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-18 Thread Jesus Reyes
ListBox as is currently used in the Messages > window. > I don't know exactly what are all the features, but I think the grid can do anything a listbox does. If you want to do it and have questions I can help you. > > -- > Graeme Geldenhuy

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-19 Thread Jesus Reyes
rid (something like dbgrid but not tied to db) to handle it. I think we would need a/some voluteers with very big projects to actually test this (I have not seen a very huge list in messages view btw) > > Mattias > Jesus Reyes A. __

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-20 Thread Jesus Reyes
ts? I think your test shows stringgrid is not a good candidate if used in the standard way, if strings are stored in other place, not in the grid, any grid could be used to draw the content simply by handling the scrollbars and OnDrawCell, but this require more work of course :) Jesus Reyes A.

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-20 Thread Jesus Reyes
--- Al Boldi <[EMAIL PROTECTED]> escribió: > Jesus Reyes wrote: > > --- Mattias Gaertner <[EMAIL PROTECTED]> escribió: > > > Can TStringGrid handle 30.000 rows? > > > Because this is easily created by compiling with -vt and > TListBox > > > ca

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-20 Thread Jesus Reyes
--- Al Boldi <[EMAIL PROTECTED]> escribió: > Jesus Reyes wrote: > > That means that we already have all those strings in some other > place > > and only some strings are sent to the listbox? > > Yes. > > > in this case another approach could be mad

Re: [lazarus] TStringGrid to replace TListBox in Messages window

2007-01-21 Thread Jesus Reyes
--- Mattias Gaertner <[EMAIL PROTECTED]> escribió: > On Sun, 21 Jan 2007 17:37:20 +0300 > Al Boldi <[EMAIL PROTECTED]> wrote: > > > Mattias Gaertner wrote: > > > Al Boldi <[EMAIL PROTECTED]> wrote: > > > > Vincent Snijders wrote: > >

Re: [lazarus] Colour a cell in TStringGrid?

2007-01-25 Thread Jesus Reyes
Brush.Color := clBlue; // or TStringgrid(Sender).Canvas.Brush.Color:=clBlue; That should paint cell 2,2 with blue color. Jesus Reyes A. ___ Do You Yahoo!? La mejor conexión a Internet y 2GB extra a

Re: [lazarus] bug in DBGrid?

2007-02-20 Thread Jesus Reyes
a small screenshot of the problem would be indeed better. Jesus Reyes A. ___ Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo por $100 al mes. http://net.yahoo.com.mx

Re: [lazarus] Regenerate Makefiles ?

2007-04-02 Thread Jesus Reyes
a delphi-compatible implementation could > be > > built on top of it. > > > > Should we consider this email *the* documentation, or will you > write a > bit more. > > Not everybody can read german Toolbox articles. > > Vincent > Also I think It's im

Re: [lazarus] AllocateHWnd

2007-04-03 Thread Jesus Reyes
ackage that is optimized through assembler routines? how portable would it be, in what platforms would it work?. Jesus Reyes A. ___ Do You Yahoo!? La mejor conexión a Int

Re: [lazarus] AllocateHWnd

2007-04-03 Thread Jesus Reyes
--- Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> escribió: > On 4/3/07, Jesus Reyes <[EMAIL PROTECTED]> wrote: > > A couple of questions: isn't graphics32 a package that is > optimized > > through assembler routines? how portable would it be, in what > &

Re: [lazarus] DrawGrid - Empty OnDrawCell Event

2007-04-13 Thread Jesus Reyes
ul, can you create one and give us a link to it?. You can send it to me directly if you want. Jesus Reyes A. __ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístrate ya - http://correo.yahoo.com.mx/ _

Re: [lazarus] Printers unit bug

2007-04-13 Thread Jesus Reyes
first. I'm afraid my patience > for > half functional software is at an end. > > -Jon > > -- > Jon Foster > JF Possibilities, Inc. > [EMAIL PROTECTED] > 541-410-2760 > Making computers work for you! Jesus Reyes A.

[lazarus] sign fpc and lazarus images.

2007-04-15 Thread Jesus Reyes
Abraham Montaño (SiR-HaCk on #lazarus-es IRC channel) sent me the attached images, he wants to share them with you, he hopes you like them. __ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístrate ya - http://corr

Re: [lazarus] [Major Bug] Mantis is case sensitive when doing searches!

2007-04-16 Thread Jesus Reyes
e the cause of a lot of duplicate bug reports. > > > > Could somebody please disable the case sensitivity! > > Can you report this in mantis ? > > Marc > This feature was already requested: http://www.freepascal.org/mantis/view.php?id=8499 Jesus Reyes A. ___

Re: [lazarus] TCustomGrid and GridLineWidth property

2007-04-17 Thread Jesus Reyes
lines? > Some ways: 1) grid.Options := grid.Options - goGridHorzLine - goGridVertLine {-goFixedVertLine-goFixedHorzLine}; 2) Grid.GridLineStyle := psClear; (non-fixed gridlines only) 3) Grid.GridLineColor := Grid.Color; (ditto,

Re: [lazarus] [patch] - grids.pas (GridLineWidth)

2007-04-17 Thread Jesus Reyes
think it's a bug) when the GridLineWidth is set > to a > negative values. I don't think Lazarus needs to copy that > behaviour > so the lowest value the GridLineWidth will go is 0 in the LCL. > I agree, we will have to change this so it becomes

RE: [lazarus] [patch] - grids.pas (GridLineWidth)

2007-04-17 Thread Jesus Reyes
value from 0 to 1, if something is not working please report. Jesus Reyes A. __ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístrate ya - http://correo.yahoo.com.mx/ ___

Re: [lazarus] [patch] - grids.pas (Click event)

2007-04-19 Thread Jesus Reyes
election, this triggers every time selection has moved for whatever cause, mouse, keyboad or by programmatically moving Row or Col. However, if we should add click for compatibility reasons, from the patch I can see the missing clicks are those who have to do with selection change, then I propo

Re: [lazarus] [patch] - grids.pas (Click event)

2007-04-20 Thread Jesus Reyes
I need to override the Click method? Could > you explain. > A quick test revels that clicking fixed cells or empty grid area triggers click in lazarus but not in turbo delphi. > > -- > Graeme Geldenhuys > > There's no place like S34° 03.168' E018° 49.342'

Re: [lazarus] [patch] - grids.pas (Click event)

2007-04-23 Thread Jesus Reyes
cide at a later date what to do in the LCL - for now Click events > will fire, but the focus cell will be the first non-fixed cell. > > > -- > Graeme Geldenhuys > > There's no place like S34° 03.168' E018° 49.342' Jesus Reyes A. _

Re: [lazarus] Hints from other objects clear DrawGrid

2007-04-27 Thread Jesus Reyes
before the call to OnDrawCell. I guess I need to see the a sample application reproducing the problem to know if it's an application or a grid problem. Jesus Reyes A. __ Correo Yahoo! Espacio para todos tus mensajes, anti

Re: [lazarus] TDBgrid float: bug?

2007-05-08 Thread Jesus Reyes
s set an appropiated DisplayFormat, for example #,###.00 or something, the format mask string should is described in formafloat function: http://freepascal.org/docs-html/rtl/sysutils/formatfloat.html Jesus Reyes A. __ Correo Yahoo

Re: [lazarus] TDBgrid float: bug?

2007-05-09 Thread Jesus Reyes
ValueUnchecked := TColumn(Source).ValueUnchecked; > finally > Collection.EndUpdate; > end; > end else > inherited Assign(Source); > end; > > Bug? Yes a typo, it's fixed in r5 Thanks. Jesus Reyes A. __

Re: [lazarus] TDBgrid float: bug?

2007-05-09 Thread Jesus Reyes
--- Andrea Mauri <[EMAIL PROTECTED]> escribió: > How can I access the DisplayFormat property? > > I can see it only in the object inspector and not by code: > > DBGrid1.Columns[0] .displayformat > > Doesn't exist. > a. try TColumn(DBGrid1.Colum

Re: [lazarus] Printer.Canvas.TextStyle.Alignment=taRightJustify => Argument can't be assigned to

2007-05-16 Thread Jesus Reyes
temporal TTextStyle variable, something like this: var T: TTextStyle; begin etc. T := Printer.Canvas.TextStyle; T.Alignment := taRightJustify; Printer.Canvas.TextStyle := T; etc. end; I don't have 2.3.1 to test, hope it works; Jesus Reyes A.

RE: [lazarus] Field designer

2007-06-06 Thread Jesus Reyes
gt; \ideint folder, the I guess Lazarus can deal with > persistent > fields, isn't it? > > Regards. > Fields Editor is only implemented in Lazarus for FPC 2.1.X or later versions. Jesus Reyes A. Ll

[lazarus] Report Tools for Lazarus

2007-06-08 Thread Jesus Reyes
Hi all, we are in talks about the possibility to include LazReport as a component included in Lazarus, one of the questions that raised was if there are more Reporting Tools that work with Lazarus even if they can't be included, we would like to know. Thanks. Jesus Re

Re: [lazarus] Report Tools for Lazarus

2007-06-08 Thread Jesus Reyes
--- Michael Van Canneyt <[EMAIL PROTECTED]> escribió: > > > On Fri, 8 Jun 2007, Jesus Reyes wrote: > > > Hi all, we are in talks about the possibility to include > LazReport as > > a component included in Lazarus, one of the questions that raised > was &

Re: [lazarus] Report Tools for Lazarus

2007-06-09 Thread Jesus Reyes
nfirm that, yes LazReport has TfrUserDataset components so one can have a custom data cursor, in fact, in 0.9.4 version there is a sample showing exactly this functionality. Sample is in Samples/UserDs directory. Jesus Reyes A. _

Re: [lazarus] Subrows in grids...

2007-06-20 Thread Jesus Reyes
rows, and crashed my lazarus badly, I also wasn't able to reproduce your image, if issues are fixed I think we should add it. There is still a pending feature I tried to add since rev 0, grouping of cells, with this something like you did can be achieved but not everything and vicevers

Re: [lazarus] Subrows in grids...

2007-06-20 Thread Jesus Reyes
' > and > Grids.Cells[3,1]='Laag' > While Grid.Cells[1,2]='status 3' Grids.Cells[2,2]='abcd2' and > Grids.Cells[3,2]='Hoog' > > Joost > oops, I admit I didn't undesrtand the

Re: [lazarus] Subrows in grids...

2007-07-06 Thread Jesus Reyes
--- zeljko <[EMAIL PROTECTED]> escribió: > On Friday 06 July 2007 17:32, Jesus Reyes A. wrote: > > - Original Message - > > From: "Graeme Geldenhuys" <[EMAIL PROTECTED]> > > To: > > Sent: Friday, July 06, 2007 1:48 AM > > Subject:

Re: [lazarus] Problem with lazreport

2007-07-23 Thread Jesus Reyes
n alternatively install > the > win32 version. > > Best regards, > Swen > IIRC, there was a problem in original win64 installer but Vincent already fixed, maybe it worths to try some recent snapshot or using lazarus from svn. At least I installed lazreport from cvs in Laza

Re: [lazarus] going legal, time for a name change....

2007-08-08 Thread Jesus Reyes
country before registering a trademark one investigation should be performed in order to find if the name can be used or not, I guess such investigation is a requisite other countries also. That would be the real test. As for the monies, there is not

Re: [lazarus] Update a grid - MySQL

2007-08-09 Thread Jesus Reyes
Probably SQLDB is doing something like update xxx set country='' where country=''; As there seems to be no way to distiguish one record from other, I guess it would be best if you can add a unique key field to your table. Jesus Reyes A. _

Re: [lazarus] report writer 4 Lazarus?

2007-08-21 Thread Jesus Reyes
n't negative feedback, the only thing is that I prefer to fix http://www.freepascal.org/mantis/view.php?id=7151 before that. I will take a look to it next week. Jesus Reyes A. ¡Sé un mejor fotógrafo! Perfeccion

Re: [lazarus] Problem Image Component

2007-08-27 Thread Jesus Reyes
r in SVN Version 11850 or near that. > > You seem to miss the changes of R11862: > http://www.freepascal.org/cgi-bin/viewcvs.cgi?root=lazarus&rev=11862&view=rev > > Vincent > It Seems 11862 was for JPEGForLazarus package, but it looks like Javier it's com

Re: [lazarus] Mouse capture not releasing

2007-08-27 Thread Jesus Reyes
lick to have the ComboBox to have it appear and click > again to > have it drop down. Not what I want. > > BTW, this code runs OK on Delphi with ComboBox staying dropped down > and > proper mouse release. > > > Thanks, > George > Have you tried this in window

Re: [lazarus] Is lazreport supposed to work? (gtk2/linux)

2007-09-13 Thread Jesus Reyes
cker please submit it, otherwise it might be forgotten. Please submit bug reports for LazReport under proyect Lazarus->Packages category LazReport. Jesus Reyes A. ¡Sé un mejor ambientalista! Encuentra cons

Re: [lazarus] DBGRID PICKLIST

2007-10-02 Thread Jesus Reyes
ist and i can't select item > into > picklist. > > If you know ? > > Regards > > Chris > This is know, gtk2 interfaces has some problems with combobox (which is used for the picklist), se

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-20 Thread Jesus Reyes
s a hint for the lazarus codetools to find the unit that includes the current inc file. Should be fixed by now also. > FPC compiler is listed as 2.2.1 and the Lazarus editor is listed as > > v0.9.23 beta. > > Dominique. Jesus Reyes A. ___

Re: [lazarus] Focus to TStringGrid cell

2007-10-20 Thread Jesus Reyes
--- Yoyong Hernan <[EMAIL PROTECTED]> escribió: > Hi all, > How can I move the focus to specified cell in TStringGrid? Like if > I have a > 4x4 grid, how do I focus a cell in row 3, column 4. > > Regards, > YH > Try with: grid.Row:=

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Jesus Reyes
lem) and because it wasn't really compiled (I don't have a mac) it was not inmediately noticed. I made some changes in r12545 and it should be fixed, please test. Btw, I changed the default for carbon to use cups implementati

Re: [lazarus] Error when Updgrading to lastest ( 20/10 ) snapshot...

2007-10-21 Thread Jesus Reyes
L package is located, so it's pretty much the same than doing a requirement of P4L package, It works because the program has PrintersDlgs in the uses clause, PrintersDlgs it's a P4L unit that in turn uses OsPrinters unit which in the end do the correct intialization. Jesus Reyes A.

[lazarus] Esta disponible la lista de correos en espa ñol / Spanish mailing list available

2007-10-25 Thread Jesus Reyes
FreePascal y Lazarus de habla hispana se manifieste suscribiendose a dicha lista y comparta ideas, sugerencias, dudas y soluciones. Suerte y que lo disfruten. Jesus Reyes A. ¡Capacidad ilimitada de

Re: [lazarus] what is this package error message

2007-11-09 Thread Jesus Reyes
linux too, here it first fails with package pascalscript, this section is from .lazarus/packagefiles.xml of course /pascalscript/Source/pascalscript.lpk exists and righs are ok. Jesus Reyes A. _

Re: [lazarus] Fix for PrintersDlgs error in current snapshots on Mac OS X...

2007-11-09 Thread Jesus Reyes
g it here works > {$ELSE} > uses > {$ENDIF} Maybe that would be an error under *nix. The whole LCLCarbon can be well removed, but well, lets the code as it is until carbon printer suppor

Re: [lazarus] Buffer Overflow

2007-11-23 Thread Jesus Reyes
nger: n7yg The problem is a recent change in FPC, it's already reported in http://www.freepascal.org/mantis/view.php?id=10232 if you compile your own FPC from SVN, for a quick fix, enter directory fpc/packages/paszlib/src and update to r9290 (svn update -r9290) recompil

Re: [lazarus] Non UTF-8 Encodings

2007-11-27 Thread Jesus Reyes
ded for something. If I knew something like this ucmaps/charset exists I probably wouldn't do it (It never occured to me to look into fpc TBH). Jesus Reyes A. Comparte video en la ventana de tus mensajes (y también tus fotos de Flickr). Usa el nuevo Yahoo! Messenger versión Beta. http://mx.beta.messenger.yahoo.com/ encodings.inc.gz Description: 689895700-encodings.inc.gz

Re: [lazarus] can't open old projects in 0.9.24

2007-11-28 Thread Jesus Reyes
gt;http://www.freepascal.org/mantis/view.php?id=10293 I updated the bug report, note that it is a duplicate of another one, follow the link to duplicate bug. Jesus Reyes A. ¡Capacidad ilimitada de almac

Re: [lazarus] Back to 0.9.22

2007-11-28 Thread Jesus Reyes
ttp://wiki.lazarus.freepascal.org/Creating_a_Backtrace_with_GDB in summary: 1. Open a command prompt window and cd to lazarus dir 2. if gdb program is not in your path, type the fullpath to gdb 3. gdb lazarus.exe 4. run [Return], then wait lazarus crashes. 5. backtrace [Return], copy the output

Re: [lazarus] New bitmap :-)

2007-12-18 Thread Jesus Reyes
in make bigide, probably later. > > > For LazReport I do not know if it has to be done. > Yes, please :) > Since it is the one and only working report for Lazarus for now, > it'd be > nice if we make nice icons for it. :) > I agree +1 vote > -Bee-

Re: [lazarus] New bitmap :-)

2007-12-21 Thread Jesus Reyes
--- Paul Ishenin <[EMAIL PROTECTED]> escribió: > Bee пишет: > >>> Hi paul, > >> These are for LazReport tab. > > > > To make sure you read this. ;) > > Yes I know, I want to ask Jesus Reyes to review and commit them :) > > Best regard

Re: [lazarus] Problem with printing

2007-12-23 Thread Jesus Reyes
dscape" setting in the print dialog > > caused by the first line and I get exactly the same results. Is > there a > fix for this? > > THX - Jon > > -- > Jon Foster What OS? if wind

Re: [lazarus] RichView support question

2007-12-27 Thread Jesus Reyes
--- Andrey Gusev <[EMAIL PROTECTED]> escribió: > I look to use TRichView together with LazReport. > Demo have tried, printing works incorrectly. > It was asked to trichview.com about support, but wasn't answered. > TRichView is supported by lazarus team ? > The question

Re: [lazarus] LazReport charsets using question

2007-12-27 Thread Jesus Reyes
sample reports that can send me, this is the best time to do it. Jesus Reyes A. ¡Capacidad ilimitada de almacenamiento en tu correo! No te preocupes más por el espacio de tu cuenta con Correo Yahoo!:

Re: [lazarus] TStringGrid.Columns.SizePriority

2008-01-22 Thread Jesus Reyes
freed : 584402/634552 > 12 unfreed memory blocks : 48 > True heap size : 1081344 (112 used in System startup) > True free heap : 1080272 > Should be : 1080464 > Call trace for block $015E38A0 size 4 >$004ECC93 TGRIDCOLUMN__SETSIZEPRIORITY, line 8536 of Gri

Re: [lazarus] Perl-script in lazreport documentation

2008-02-01 Thread Jesus Reyes
--- Joost van der Sluis <[EMAIL PROTECTED]> escribió: > Hi all, > > Is this file: lazarus/components/lazreport/doc/cvs2cl.pl really > necessary? Wasn't it used once and can it be removed now? > > Joost > Not necessary, Yes can

Re: [lazarus] Reports

2008-02-01 Thread Jesus Reyes
Report on an empty form will trigger once run a > SIGSEGV at procedure unidrv!DrvEnableDriver. > Please report bugs in tracker, in case of AV please include a backtrace. Jesus Reyes A. ¡Capacida

Re: [lazarus] before I go to far with this

2006-03-14 Thread Jesus Reyes
ready implemented in the postgress dataset part?. To know what field is causing problem, try to add some columns to a "live" grid, then try to change the field name of the column, if that fails you have found the culprit field, checkout how is defined in you database, what is your

Re: [lazarus] before I go to far with this

2006-03-14 Thread Jesus Reyes
--- Michael Van Canneyt <[EMAIL PROTECTED]> escribió: > > > On Tue, 14 Mar 2006, Jesus Reyes wrote: > > > > > --- johnf <[EMAIL PROTECTED]> escribió: > > > > > Hi I am now attempt to populate a dbgrid with the data I get > from > >

Re: [lazarus] before I go to far with this

2006-03-14 Thread Jesus Reyes
--- Michael Van Canneyt <[EMAIL PROTECTED]> escribió: > > > On Tue, 14 Mar 2006, Jesus Reyes wrote: > > > > > --- johnf <[EMAIL PROTECTED]> escribió: > > > > > Hi I am now attempt to populate a dbgrid with the data I get > from > >

Re: [lazarus] before I go to far with this

2006-03-14 Thread Jesus Reyes
--- johnf <[EMAIL PROTECTED]> escribió: > On Tuesday 14 March 2006 13:27, Michael Van Canneyt wrote: > > On Tue, 14 Mar 2006, johnf wrote: > > > On Tuesday 14 March 2006 11:07, Jesus Reyes wrote: > > > > --- johnf <[EMAIL PROTECTED]> escribió: > >

Re: [lazarus] gridview - scrolling

2006-03-20 Thread Jesus Reyes
will probably mean one record, so clicking the scrollbar arrows will move one record. > Ciao > A.J. > -- > "there's nothing as inspirational for a hacker as a cat obscuring a bug > by sitting in front of the monitor" - Boudewijn Rempt > A.J. Ven

Re: [lazarus] Scrollbars in Stringgrid

2006-03-20 Thread Jesus Reyes
, so intead of deriving a grid, API functions like SetScrollInfo, and GetScrollInfo could be used. Jesus Reyes A. __ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístr

Re: [lazarus] OnExit, OnDblClick, Close with TDBGrid.

2006-03-30 Thread Jesus Reyes
not > happen. > This seems to be the standard behaviour under gtk, I removed the grid and put a tedit instead with the same result. I'm not sure that's a bug or not. Jesus Reyes A. ___ Do

Re: [lazarus] [patch] textOut on gtk2

2006-04-25 Thread Jesus Reyes
tle and added support for font names like "helvetica 12" in addition to XLFD and single font names. Comments? One observation for Darek's patch, it seems that to convert font's pixel size to point size a fixed 96 ppi was used, why not

Re: Problems with Find in Files dialog

2006-05-30 Thread Jesus Reyes
--- Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> escribió: > Solved. Swen sent me a private mail (perhaps by accident?) > > thanks, > and how was that it did solve your probl

Re: [lazarus] encoding of croatian letters?

2006-05-31 Thread Jesus Reyes
valid font name-charset combination. "default" font name will probably fail although I don't know if you are using default font name. You could know what font support any charset by using the fontenum program found in directory lazarus/examples/fontenum. Try EASTEUROPE_CHARSET,

Re: [lazarus] sample for help using ipro

2006-06-09 Thread Jesus Reyes
URL, line 209 of lazhelphtml.pas $081F4BDE THTMLHELPDATABASE__SHOWHELP, line 222 of lazhelphtml.pas $081FABBA THELPDATABASES__SHOWHELPFORNODES, line 1369 of lazhelpintf.pas $081FB302 THELPDATABASES__SHOWHELPFORKEYWORD, line 1471 of lazhelpintf.pas $081FACC9 THEL

Re: [lazarus] Patch: fileBroker for Turbo Power iPro

2006-06-12 Thread Jesus Reyes
fix the fpc 202 version issues in linux and windows, and to wrap ip_pro additions with IP_LAZARUS. Jesus Reyes A. __ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regístrate ya - http://correo.yahoo.com.mx/ _

[lazarus] LazReport, printers.

2006-06-19 Thread Jesus Reyes
removed from TDBF. That's all about it. Jesus Reyes A. ___ Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo por $1

Re: [lazarus] LazReport

2006-06-26 Thread Jesus Reyes
web page are too old, I wrote some notes about LazReport and a download link in http://wiki.lazarus.freepascal.org/index.php/Projects_using_Lazarus#LazReport Jesus Reyes A. ___ Do You Yahoo!? La m

Re: [lazarus] Writing a class (please point me to a good reading)

2006-07-18 Thread Jesus Reyes
to copy its content to StringGrid after finishing > the loop. > > Regards > Boban Spasic > Don't know if in your case it helps but you can do: grid.BeginUpdate; [fill the grid} grid.EndUpdate; also if you are constantly adding rows, one by one, grid.rowcount:=grid.rowcount+1

Re: [lazarus] What is the FPC portable way to PostMessage?

2006-07-27 Thread Jesus Reyes
for an implementation example see the diff at: http://lazreport.cvs.sourceforge.net/lazreport/lazreport/source/lr_progr.pas?r1=1.4&r2=1.5&sortby=date the ipro package in lazarus also uses that technique... Jesus Reyes A. __ Correo Yahoo! E

RE: [lazarus] Xml

2006-08-21 Thread Jesus Reyes
having the same problem > Just changing the encoding to UTF-8 would not help, you need also encode the content, for example for ó you should use 'lecci'#$C3$B3'n'. And I think UTF-8 is the default encoding? Jesus Reyes A.

RE: [lazarus] Xml

2006-08-21 Thread Jesus Reyes
having the same problem > Just changing the encoding to UTF-8 would not help, you need also encode the content, for example for ó you should use 'lecci'#$C3#$B3'n'. And I think UTF-8 is the default encoding? Jesus Reyes A.

Re: [lazarus] Tstringgrid issue?

2006-08-24 Thread Jesus Reyes
> g > -- > > bye > tiziano > Hi Tiziano It works this way by design, to see some info about it see: http://wiki.lazarus.freepascal.org/index.php/Grids_Reference_Page#property_Rows.5Bindex:_Integer.5D:_TStrings_read_GetRows_write_SetRows.3B Regards. Jesu

Re: [lazarus] Tstringgrid issue?

2006-08-24 Thread Jesus Reyes
--- Jesus Reyes <[EMAIL PROTECTED]> escribió: > > --- Tiziano-tele2 <[EMAIL PROTECTED]> escribió: > > > It works this way by design, to see some info about it see: > > http://wiki.lazarus.freepascal.org/index.php/Grids_Reference_Page#

Re: [lazarus] paradox access fron lazarus?

2006-08-31 Thread Jesus Reyes
adox.tar.gz Note if you try the sample on graphic or memo fields, one have be in the column of the field and then browse up and down so the respective controls get updated. Jesus Reyes A. ___

Re: [lazarus] TDrawGrid flickering

2006-09-11 Thread Jesus Reyes
;ve run out of ideas :) > > Regards > Ewald > It would be best if you could submit a test project but guessing, have you turned DefaultDrawing off? Jesus Reyes A. ___ Do You Yah

Re: [lazarus] error messages while starting lazarus

2006-10-26 Thread Jesus Reyes
installed a package with unit output directory set to lib/$(TargetCPU)-$(Target_OS), $(Target_OS) macro is not recognized, it should be $(TargetOS) I remember at least two packages that have this problem, fblib and pascalscript. Jesus Reyes A.

Re: [lazarus] issues with virtual treeview... ideas or alternatives?

2006-11-04 Thread Jesus Reyes
dy have the data why not use a TDrawGrid?, just set grid.rowcount:=n rows, colcount:=m columns and draw your content in OnDrawCell. Jesus Reyes A. ___ Do You Yahoo!? La mejor

Re: [lazarus] DBGrid and VisibleRow

2006-11-30 Thread Jesus Reyes
c in delphi dbgrid. The row (or col) property should not be modified directly. What are you trying to do?. And actually there is a way using an access class: Type TCustomDbGridAccess=class(TCustomDbGrid); ... WriteLn('Row=',TCus

Re: [lazarus] DBGrid and VisibleRow

2006-11-30 Thread Jesus Reyes
--- Christian Ulrich <[EMAIL PROTECTED]> escribió: > Jesus Reyes schrieb: > > --- Christian Ulrich <[EMAIL PROTECTED]> escribió: > > > > > >> HI, > >> > >> actual thers no way to get the Visible row in an dbgrid, is it > >&

Re: [lazarus] LazReport not Working on Windows 2k pro

2005-08-04 Thread Jesus Reyes
nd if you ask, I already install the printer4lazarus package... > > Does anyone know about this issue or had come with the same problem > as I...? > Can anyone give me a hint on how to solve this? > > T.I.A. > Luis > Will need more information on this, a

Re: [lazarus] Change Request to the TStringGrid

2005-08-05 Thread Jesus Reyes
do you want to do something before that?", the arguments are the new col and row if you want to access the old ones, then use grid.col, grid.row If you want, sendme a sample which works in Delphi and not in Lazarus and I will try to rewrote things if necessary or I will give you an alternati

Re: [lazarus] dbGrid automatic column resize to data length

2005-09-23 Thread Jesus Reyes
ives at http://www.lazarus.freepascal.org/mailarchives > It's a known problem which is fixed now, I will commit the patch tomorrow. Jesus Reyes A. __ Correo Yahoo! Espacio pa

Re: [lazarus] Several patches

2005-09-23 Thread Jesus Reyes
grids can have ColCount=FixedCols or RowCount=FixedRows, which should look like a empty grid but with Cols or Rows headers. Jesus Reyes A. __ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ¡gratis! Regíst

Re: [lazarus] Grids patch

2005-09-26 Thread Jesus Reyes
- Original Message - From: <[EMAIL PROTECTED]> To: Sent: Friday, September 23, 2005 5:30 PM Subject: [lazarus] Grids patch > Here's a new patch for grids.pas. It's just a code cleanup anymore. > > Darius Applie

  1   2   >