Re: [fpc-pascal]CGI Programming

2003-06-09 Thread vkrish
> > ezcgi is outdated. The new release 1.0.8 contains the 'cgiapp' unit > which has all that ezcgi had, but is embedded more in the FCL. > > I suggest you download the latest FCL sources, or get the new release. > Is there a binding for FastCGI ? It is a good alternative to plain CGI. cheers

Re: [fpc-pascal]Trivial Graphics on Linux?

2003-10-22 Thread vkrish
> On Tuesday 21 October 2003 11:57, you wrote: > > Hello! > > > > I am interested in a demo which does really trivial graphics on LINUX, > > compiles fine with FPC 1.0.4, and does basically that what a normal > > TurboPascal for DOS can do with its graph unit. > > > > Because Linux uses X11, it

Re: [fpc-pascal]1.9.0 aka 2.0.0 Beta-1 is out

2003-11-09 Thread vkrish
>Whats New in 1.9.0 aka 2.0.0-Beta1 > > > Compiler: >+ dynamic arrays >+ interfaces >+ variants >+ full widestring support >+ default parameters >+ cross name scope overloading >+ support for the PowerPC, Sparc and ARM processor, installation

Re: [fpc-pascal]FP newbie

2003-11-12 Thread vkrish
> Hi, > > I'm a FP newbie but a long-time Delphi and Pascal developer. I'm curious > about several things regarding the current state of FP as well as its > future. Since I'm considering the use of FP in classroom for my students > and also for commercial development, I hope some of you coul

Re: [fpc-pascal]FP newbie

2003-11-12 Thread vkrish
Hi!, > > #D. Is there (planned) support for class templates? Do we really need templates ? IMO, templates and reference based objects dont go too well. > > #E. Is there (planned) support for wxWindows? I think this > is a terrific abstraction layer for GUI. The best is > that it is st

Re: [fpc-pascal]FP newbie

2003-11-13 Thread vkrish
> Marco, > > Let me see if I understand your concern... > > >>wxWindows is a good library/framework indeed. But why do we need a > >>pascal interface to it ? It adds too many layers to the whole system. > >>eg: to create a button => pascal-layer->wxWindows->gtk+/motif/win32->window system >

Re: [fpc-pascal]OT: Error Accessing List Archive

2003-11-14 Thread vkrish
> > On vrijdag, nov 14, 2003, at 09:59 Europe/Brussels, Shawn Tan wrote: > > > How do I access the list archive?? I tried accessing, > > http://lists.freepascal.org/mailman/listinfo/fpc-pascal and clicking on > > the list archives, but it resulted in an error.. I would like to search > > the a

[fpc-pascal]udp file transfer

2004-01-06 Thread vkrish
Hi all!, I'm working on a file transfer application for my company. It will be a small win32 app that will transfer (huge) mpeg files through a satelite link. Since the latency is high, i'm planning to use UDP. Any code/units/pointers highly appreciated. cheers, -Krish _

Re: [fpc-pascal]udp file transfer

2004-01-06 Thread vkrish
> > I'm working on a file transfer application for my company. It will be a > > small win32 app that will transfer (huge) mpeg files through a satelite > > link. Since the latency is high, i'm planning to use UDP. > > > > Any code/units/pointers highly appreciated. > > If you use a FPC 1.9.x v

Re: [fpc-pascal]udp file transfer

2004-01-06 Thread vkrish
sorry for a silly Q, > A shadow ICS lib has been entered into the CVS, directory projects/contrib/ics I just did a "cvd -z3 update -dP" to the current fpc tree but I did not find any contrib dir in the tree. where exactly is this ? cheers, -Krish __

Re: [fpc-pascal]udp file transfer

2004-01-06 Thread vkrish
> > A shadow ICS lib has been entered into the CVS, directory projects/contrib/ics > > I just did a "cvd -z3 update -dP" to the current fpc tree but I did not find any > contrib dir in the tree. where exactly is this ? ok. I found it. plz. ignore my previous msg. cheers, -Krish ___

Re: [fpc-pascal]udp file transfer

2004-01-06 Thread vkrish
> > sorry for a silly Q, > > > > > A shadow ICS lib has been entered into the CVS, directory projects/contrib/ics > > > > I just did a "cvd -z3 update -dP" to the current fpc tree but I did not find any > > contrib dir in the tree. where exactly is this ? > > It's not the fpc/ tree, but the

[fpc-pascal]dbExpress with fpc

2004-02-13 Thread vkrish
Hi all, 1. I'm currently checking out dbExpress with Kylix. Is is compilable with fpc ? 2. Is there an IDL-to-objectpascal mapping somewhere ? cheers, -Krish ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/

Re: [fpc-pascal]dbExpress with fpc

2004-02-13 Thread vkrish
> > > On Fri, 13 Feb 2004 [EMAIL PROTECTED] wrote: > > > Hi all, > > > > 1. I'm currently checking out dbExpress with Kylix. Is is compilable with fpc ? > > No. That is, FPC has no dbExpress components. Looks like dbExpress is written in C/C++ . > > > > > 2. Is there an IDL-to-objectpasca

Re: [fpc-pascal]dbExpress with fpc

2004-02-13 Thread vkrish
> > > No. That is, FPC has no dbExpress components. > > Looks like dbExpress is written in C/C++ . > > IIRC dbExpress is sort of based on Midas. I doubt that dbExpress is legally > available for free use. I think you at least need a license for a Pro+ > version of Delphi and thet covers you for

Re: [fpc-pascal]dbExpress with fpc

2004-02-13 Thread vkrish
> An interface is a construct independent of COM or CORBA. It's just a set > of methods. Delphi does allow you to use COM methods transparantly via > interfaces. In principle, the same should be true for FPC. > ok. now I recollect. COM interfaces have 3 additional methods (from IUnknown). Classes

Re: [fpc-pascal]Suppressing the console window in Win32

2004-03-04 Thread vkrish
> I'm building a graphical application using GameVision > (http://www.jarroddavis.com/). The application compiled in FPC opens a > console window whenever the application is executed. The application > compiled in Delphi does not open a console window. How do I not have the > console window a

Re: [fpc-pascal]exception handling

2004-03-17 Thread vkrish
> > > > try > > readln(NewAlbum.Year); > > except > > on EConvertError do NewAlbum.Year := 0; > > end; > > This should be: > > > try >readln(NewAlbum.Year); > except > on E : EConvertError do NewAlbum.Year := 0;

[fpc-pascal]HashTables in fpc ?

2004-04-27 Thread vkrish
Hi all, Is there a hash table implementation in fcl ? I need a good string->string hash table. thx in advance, =Krishna ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]HashTables in fpc ?

2004-04-28 Thread vkrish
> > > On Tue, 27 Apr 2004 [EMAIL PROTECTED] wrote: > > > Hi all, > > > > Is there a hash table implementation in fcl ? > > > > I need a good string->string hash table. > > Decal has been ported to FPC. It contains hash table algorithms. > Also Martin Waldenburg should have some good/fast mec