[lazarus] SynEdit broken

2007-05-24 Thread Darius Blaszijk
After updating to latest revision just now, I can see no code anymore in SynEdit. Just a blank control. (WinXP, 2.0.4) The problem lies in revision 11188 most probably, because reverting to 11187 solves the problem. Don't count on me to test possible fixes because I'm leaving for the

Re: [lazarus] Office Menu Like

2007-05-24 Thread A.J. Venter
Well you could start with a TImage containing a rounded image within a transparent square for your rounded button, then set up your menu using the menu editor adding however many levels you need, and map it's show method that to the TImage.Onclick event. This is just a start though - the short

Re: [lazarus] big projects using freepascal?

2007-05-24 Thread Michael Van Canneyt
On Wed, 23 May 2007, Seth Grover wrote: Hey guys. I work for a company that's thinking about doing a code port from Modula-2 here in a little while, and I'm looking for ammunition to convince them that Free Pascal is the way to go. It would be good if I had a list of mature/large/well-known

Re: [lazarus] big projects using freepascal?

2007-05-24 Thread Graeme Geldenhuys
You can add Master Maths (http://www.m2maths.com) to that list, but unfortunately it is a commercial product (not for download) used in 135+ Campuses and 250+ Schools. We moved all development from Delphi 7 and VB6 to Free Pascal and Lazarus just over a year ago. TechInsite's Object Persistent

Re: [lazarus] big projects using freepascal?

2007-05-24 Thread Graeme Geldenhuys
And another list... All Lazarus products must be using the Free Pascal compiler. :) http://wiki.lazarus.freepascal.org/Projects_using_Lazarus Graeme. On 5/24/07, Graeme Geldenhuys [EMAIL PROTECTED] wrote: You can add Master Maths (http://www.m2maths.com) to that list, but unfortunately it

Re: [lazarus] SynEdit broken

2007-05-24 Thread vsnijders
- Original Message - From: Darius Blaszijk [EMAIL PROTECTED] Date: Thursday, May 24, 2007 9:01 am Subject: [lazarus] SynEdit broken After updating to latest revision just now, I can see no code anymore in SynEdit. Just a blank control. (WinXP, 2.0.4) The problem lies in revision

Re: [lazarus] big projects using freepascal?

2007-05-24 Thread Graeme Geldenhuys
On 5/24/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Can you add a screenshot and a short description to the Lazarus Application Gallery? Will do... -- Graeme Geldenhuys General error, hit any user to continue. _ To

Re: [lazarus] big projects using freepascal?

2007-05-24 Thread Seth Grover
Awesome. Thank you for the great examples. I really appreciate it. -Seth -- Seth Grover sethdgrover[at]gmail[dot]com http://grovers.us/seth Who is John Galt? _ To unsubscribe: mail [EMAIL PROTECTED] with

[lazarus] TUTF8Char declaration

2007-05-24 Thread Felipe Monteiro de Carvalho
Hi, TUTF8Char is declared as: TUTF8Char = string[8]; Why not string[4]? Shouldn't all utf8 chars fit in 4 bytes? Just curious, I saw this while implementing fpgui utf-8 char reception system and thougth if I need this or not... thanks, -- Felipe Monteiro de Carvalho

Re: [lazarus] Zeos Lib Question

2007-05-24 Thread Charl van Jaarsveldt
Hi, I just tried it two days ago and had the same problem, though I am on linux. The sqliteDataSet that comes with lazarus works fine, so I'd say the library is installed correctly. Charl On 5/23/07, Lee Jenkins [EMAIL PROTECTED] wrote: dayat wrote: may be you can put the sqlite3.dll into

RE: [lazarus] Office Menu Like

2007-05-24 Thread Sergio Samayoa
Ribbon you mean, isn’t it? http://mxs.bergsoft.net/ This is for Delphi, may be you have the time to port it to Lazarus, but have many, many, many time because it is based on other components. Regards. _ De: Carlos Avogaro [mailto:[EMAIL PROTECTED] Enviado el:

Re: [lazarus] StringReplace - TReplaceFlags

2007-05-24 Thread Darmawan Sugiarto
May be this StringReplace(s,'something','somethingElse',[rfReplaceAll]); Alvise Nicoletti [EMAIL PROTECTED] wrote: Sorry but I really don't understand this: StringReplace(s,'something','somethingElse',rfReplaceAll); servizio_server.pas(65,39) Error: Incompatible type for arg no. 4:

Re: [lazarus] TUTF8Char declaration

2007-05-24 Thread Mattias Gaertner
On Thu, 24 May 2007 12:40:39 +0200 Felipe Monteiro de Carvalho [EMAIL PROTECTED] wrote: Hi, TUTF8Char is declared as: TUTF8Char = string[8]; Why not string[4]? Shouldn't all utf8 chars fit in 4 bytes? Just curious, I saw this while implementing fpgui utf-8 char reception system

Re: [lazarus] [patch] - FPCUnit GUI Test Runner

2007-05-24 Thread Dean Zobec
Graeme Geldenhuys pravi: Hi Attached is a patch for FPCUnit GUI Test Runner. This patch combined with the one I sent to FPC-Devel will prevent the GUI Test Runner to output the XML test results to the console and the SynEdit component. For the GUI Test Runner the SynEdit component should

Re: [lazarus] TUTF8Char declaration

2007-05-24 Thread Marc Weustink
Mattias Gaertner wrote: On Thu, 24 May 2007 12:40:39 +0200 Felipe Monteiro de Carvalho [EMAIL PROTECTED] wrote: Hi, TUTF8Char is declared as: TUTF8Char = string[8]; Why not string[4]? Shouldn't all utf8 chars fit in 4 bytes? Just curious, I saw this while implementing fpgui utf-8 char

Re: [lazarus] TUTF8Char declaration

2007-05-24 Thread Mattias Gaertner
On Thu, 24 May 2007 22:48:05 +0200 Marc Weustink [EMAIL PROTECTED] wrote: Mattias Gaertner wrote: On Thu, 24 May 2007 12:40:39 +0200 Felipe Monteiro de Carvalho [EMAIL PROTECTED] wrote: Hi, TUTF8Char is declared as: TUTF8Char = string[8]; Why not string[4]? Shouldn't all

[lazarus] Store a utf-16 file in a lazarus resource file

2007-05-24 Thread Luiz Americo Pereira Camara
I want to store a utf-16 encoded file in a Lazarus resource file and than load as a Stream. I already did the first step (create the lrs file with lazres) now i want to load the file in a stream. Does someone know how i can do that? Luiz

Re: [lazarus] Store a utf-16 file in a lazarus resource file

2007-05-24 Thread Paul Ishenin
Luiz Americo Pereira Camara wrote: I want to store a utf-16 encoded file in a Lazarus resource file and than load as a Stream. I already did the first step (create the lrs file with lazres) now i want to load the file in a stream. Does someone know how i can do that? maybe so: function

[lazarus] Once Code Compile Anywhere .... ????

2007-05-24 Thread Allies Xposs
Thanks all... Im confuse .. How to di This ? (Once Code Compile Anywhere).. Im Use LAzarus under WIndows, but... i want compile my code can RUN IN LINUX... How...?? Thanks - Take the Internet to Go: Yahoo!Go puts the Internet in

RE: [lazarus] Once Code Compile Anywhere .... ????

2007-05-24 Thread Allies Xposs
Thanks... a lot for your Support in my Code, i m use Zeos Component to acces Database Mysql. I have Table BRAND, brand have 10 Record, In OS Windows... Grid can Show Row/Record. but in Linux Suse 9.1, That Grid Blank Row... why? and I try use DBSQL component... Table BRAND can Show in