Re: [lazarus] Office Menu Like

2007-05-23 Thread Graeme Geldenhuys

You will have to be more specific.  Microsoft changes the look of
Office in every release!! :-)
Count the amount of looks between Office 97 and Office 2007.

Graeme.


On 5/23/07, Carlos Avogaro [EMAIL PROTECTED] wrote:

anybody know how to make a Office Menu like,  with lazarus

Thanks



_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] Office Menu Like

2007-05-23 Thread Paul Ishenin

Graeme Geldenhuys wrote:

You will have to be more specific.  Microsoft changes the look of
Office in every release!! :-)
Count the amount of looks between Office 97 and Office 2007.

Graeme.


On 5/23/07, Carlos Avogaro [EMAIL PROTECTED] wrote:

anybody know how to make a Office Menu like,  with lazarus



There was nothing about which office in original mail. Maybe author 
needs OpenOffice menu look :)


Paul Ishenin.

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] Office Menu Like

2007-05-23 Thread Graeme Geldenhuys

On 5/23/07, Paul Ishenin [EMAIL PROTECTED] wrote:


There was nothing about which office in original mail. Maybe author
needs OpenOffice menu look :)


100% correct! Oh we are so clever today.  :-)


--
Graeme Geldenhuys

General error, hit any user to continue.

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] Lazarus keyword completion addon

2007-05-23 Thread Marc Weustink

Andrew Haines wrote:

That would be very, very nice to have: Case Correction.  I know that its
not integral, but I am a stickler for case consistency and a feature
like that would help me save time by not having to hit shift so much.
Case correction is also help to avoid spelling mistake for identifiers
since when you hit space, it corrects and you know its correct.



memory lane
I remember using qbasic a long time ago and when you typed a var name it
would change the var's case everywhere to what you just typed. /memory
lane


VB had (has?) this feature also, pretty annoying.

Marc

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] Setting my own handle for a TCanvas

2007-05-23 Thread Felipe Monteiro de Carvalho

On 5/18/07, Michael Van Canneyt [EMAIL PROTECTED] wrote:

Basically, make sure all your code draws on a TFPCustomCanvas.
It contains all methods that TCanvas has. If it does, then you
can draw to screen/printer/bitmap by supplying the correct canvas.


Thanks a lot, TFPImageCanvas looks almost perfect, but  the
graphics32 code expects a TCanvas. The best I could do is change that
to TCustomCanvas, because graphics32 also runs on Delphi, where
TFPCustomCanvas doesn't exist ...

This looks like a big problem for this solution.

thanks,
--
Felipe Monteiro de Carvalho

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


[lazarus] StringReplace - TReplaceFlags

2007-05-23 Thread Alvise Nicoletti

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: Got 
enumeration type, expected TReplaceFlags


What's that???

Shouldn't that work?

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] StringReplace - TReplaceFlags

2007-05-23 Thread Horacio Jamilis
Try

StringReplace(s,'something','somethingElse',[rfReplaceAll]);

The last parameter is a set... I guess :-)

Horacio


- Original Message - 
From: Alvise Nicoletti [EMAIL PROTECTED]
To: lazarus@miraclec.com
Sent: Wednesday, May 23, 2007 12:35 PM
Subject: [lazarus] StringReplace - TReplaceFlags


 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: Got
 enumeration type, expected TReplaceFlags

 What's that???

 Shouldn't that work?

 _
  To unsubscribe: mail [EMAIL PROTECTED] with
 unsubscribe as the Subject
archives at http://www.lazarus.freepascal.org/mailarchives

 __ Información de NOD32, revisión 2286 (20070523) __

 Este mensaje ha sido analizado con  NOD32 antivirus system
 http://www.nod32.com



_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] StringReplace - TReplaceFlags

2007-05-23 Thread Joost van der Sluis
It expects a set. Try:

StringReplace(s,'something','somethingElse',[rfReplaceAll]);

On Wed, 2007-05-23 at 17:35 +0200, Alvise Nicoletti 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: Got 
 enumeration type, expected TReplaceFlags
 
 What's that???
 
 Shouldn't that work?
 
 _
  To unsubscribe: mail [EMAIL PROTECTED] with
 unsubscribe as the Subject
archives at http://www.lazarus.freepascal.org/mailarchives
 
-- 
Met vriendelijke groeten,

  Joost van der Sluis
  CNOC Informatiesystemen en Netwerken
  http://www.cnoc.nl

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] StringReplace - TReplaceFlags

2007-05-23 Thread Alvise Nicoletti

Horacio Jamilis ha scritto:

Try

StringReplace(s,'something','somethingElse',[rfReplaceAll]);

The last parameter is a set... I guess :-)

Horacio


- Original Message - 
From: Alvise Nicoletti [EMAIL PROTECTED]

To: lazarus@miraclec.com
Sent: Wednesday, May 23, 2007 12:35 PM
Subject: [lazarus] StringReplace - TReplaceFlags


  

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: Got
enumeration type, expected TReplaceFlags

What's that???

Shouldn't that work?

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

__ Información de NOD32, revisión 2286 (20070523) __

Este mensaje ha sido analizado con  NOD32 antivirus system
http://www.nod32.com





_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives



  

:O

Sorry, I didn't sleep tonight :O

*hits himself with a nailed whip*

thanks

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] StringReplace - TReplaceFlags

2007-05-23 Thread Henry Vermaak

On 23/05/07, Alvise Nicoletti [EMAIL PROTECTED] wrote:

:O

Sorry, I didn't sleep tonight :O

*hits himself with a nailed whip*


kinky, although not really my thing ;)

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


[lazarus] Cannot compile GTK2 lcl anymore

2007-05-23 Thread A.J. Venter

I don't know what changed but with neither fpc 2.3.1 nor 2.1.4 am I
able to compile the LCL for GTK2 as unit gtkint fails to build. Here
are the errors I am getting:

PPU Loading /home/silentcoder/lazarus/lcl/units/i386-linux/gtk2/gtkint.ppu
PPU Source: gtkint.pp not found
PPU Source: gtkdefines.inc not found
PPU Source: gtkwinapih.inc not found
PPU Source: gtklclintfh.inc not found
PPU Source: gtklistslh.inc not found
PPU Source: gtkfiledialogutilsh.inc not found
PPU Source: gtklistsl.inc not found
PPU Source: gtkfiledialogutils.inc not found
PPU Source: gtkobject.inc not found
PPU Source: gtkwinapi.inc not found
PPU Source: gtklclintf.inc not found
PPU Source: gtkimages.lrs not found

Any ideas ?
--
A.J. Venter
CEO - OutKast Solutions C.C.
http://www.outkastsolutions.co.za
Cell: +27 83 455 9978
Fax: +27 21 413 2800
Office: +27 21 591 6766

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


[lazarus] big projects using freepascal?

2007-05-23 Thread Seth Grover

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 products or projects or
applications built with Free Pascal that I could show my superiors and
say See?.

Thanks in advance.

-Seth

--
Seth Grover
sethdgrover[at]gmail[dot]com
http://grovers.us/seth

Who is John Galt?

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] big projects using freepascal?

2007-05-23 Thread A.J. Venter

This big enough for you ? :)
http://outkastsolutions.co.za/outkast/index.php?option=com_contenttask=viewid=33Itemid=1

A.J.

On 5/24/07, Seth Grover [EMAIL PROTECTED] 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 products or projects or
applications built with Free Pascal that I could show my superiors and
say See?.

Thanks in advance.

-Seth

--
Seth Grover
sethdgrover[at]gmail[dot]com
http://grovers.us/seth

Who is John Galt?

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives




--
A.J. Venter
CEO - OutKast Solutions C.C.
http://www.outkastsolutions.co.za
Cell: +27 83 455 9978
Fax: +27 21 413 2800
Office: +27 21 591 6766

_
To unsubscribe: mail [EMAIL PROTECTED] with
   unsubscribe as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] Cannot compile GTK2 lcl anymore

2007-05-23 Thread Mattias Gaertner
On Thu, 24 May 2007 00:59:30 +0200
A.J. Venter [EMAIL PROTECTED] wrote:

 I don't know what changed but with neither fpc 2.3.1 nor 2.1.4 am I
 able to compile the LCL for GTK2 as unit gtkint fails to build. Here
 are the errors I am getting:
 
 PPU
 Loading /home/silentcoder/lazarus/lcl/units/i386-linux/gtk2/gtkint.ppu
 PPU Source: gtkint.pp not found PPU Source: gtkdefines.inc not found
 PPU Source: gtkwinapih.inc not found
 PPU Source: gtklclintfh.inc not found
 PPU Source: gtklistslh.inc not found
 PPU Source: gtkfiledialogutilsh.inc not found
 PPU Source: gtklistsl.inc not found
 PPU Source: gtkfiledialogutils.inc not found
 PPU Source: gtkobject.inc not found
 PPU Source: gtkwinapi.inc not found
 PPU Source: gtklclintf.inc not found
 PPU Source: gtkimages.lrs not found
 
 Any ideas ?

Compile with -va and make sure, fpc finds only the right units and
nothing from older fpc installs.


Mattias

_
 To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


Re: [lazarus] Office Menu Like

2007-05-23 Thread Carlos Avogaro
ok, guys, I would like to make a control menu like office 2007, it group many 
buttons and I would like to make that gradients that made the controls looks 
like 3D. I don't know if I could meke it from application, or I have to made 
firts in external bitmap.
   
  Thanks

Graeme Geldenhuys [EMAIL PROTECTED] wrote:
  On 5/23/07, Paul Ishenin wrote:

 There was nothing about which office in original mail. Maybe author
 needs OpenOffice menu look :)

100% correct! Oh we are so clever today. :-)


-- 
Graeme Geldenhuys

General error, hit any user to continue.

_
To unsubscribe: mail [EMAIL PROTECTED] with
unsubscribe as the Subject
archives at http://www.lazarus.freepascal.org/mailarchives


   Fussy? Opinionated? Impossible to please? Perfect.  Join Yahoo!'s user 
panel and lay it on 
us.http://us.rd.yahoo.com/evt=48516/*http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7
 hot CTA = Join Yahoo!'s user panel