[fpc-pascal]CGI

2003-01-27 Thread Luis Del Aguila
Quisiera saber como se hace un programa CGI, para leer un formulario html y enviar su contenido por email en un servidor Windows (IIS). ¿ How to make a CGI program in pascal, that read and send for e-mail the Html form content ? Gracias. Thanks. Att. Luis Del Aguila

Re: [fpc-pascal]Graphics woes

2003-01-27 Thread Michael Van Canneyt
On Sat, 25 Jan 2003, John Coppens wrote: > Hi all... > > I've been needing quick & dirty graphing capability, and I'm missing the > old graph library. I know - I have the graph lib working, but the frequent > swaps in and out of X11 are not really very comfortable. > > As is, I have not found an

Re: [fpc-pascal]FPC 1.0.6 and open arrays

2003-01-27 Thread Jonas Maebe
On zaterdag, jan 25, 2003, at 00:15 Europe/Brussels, Jilani Khaldi wrote: Does FPC support open arrays? I get an error compiling something like this: type m = array of integer; but it works fine if I declare it inside a procedure or a function: procedure OpenArray(var m: array of integer);

Re: [fpc-pascal]FPC 1.0.6 and open arrays

2003-01-27 Thread Michael Van Canneyt
On Sat, 25 Jan 2003, Jilani Khaldi wrote: > Hi All, > > Does FPC support open arrays? > I get an error compiling something like this: > > type > m = array of integer; This is a dynamic array, not an open array. Dynamic arrays are supported in version 1.1. > > but it works fine if I declare i

Re: [fpc-pascal]Graphics woes

2003-01-27 Thread John Coppens
On Mon, 27 Jan 2003 14:19:56 +0100 (W. Europe Standard Time) Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > > > On Sat, 25 Jan 2003, John Coppens wrote: > > > Hi all... > > > > I've been needing quick & dirty graphing capability, and I'm missing > > the old graph library. I know - I have the

Re: [fpc-pascal]CGI

2003-01-27 Thread Andreas K. Foerster
On Sun, Jan 26, 2003 at 10:36:00AM -0500, Luis Del Aguila wrote: > ¿ How to make a CGI program in pascal, that read and send for e-mail the > Html form content ? Look at the User's Guide, chapter 11. There's also an unCGI Unit around. HTH -- Tschuess Andreas __

Re: [fpc-pascal]FPC 1.0.6 and open arrays

2003-01-27 Thread Andreas K. Foerster
On Sun, Jan 26, 2003 at 12:53:25PM +0100, Marco van de Voort wrote: > This is an dynamic array, and is supported only in 1.1 (the next big > version currently in development) > > > but it works fine if I declare it inside a procedure or a function: > > > > procedure OpenArray(var m: array of i

Re: [fpc-pascal]Graphics woes

2003-01-27 Thread Michael . VanCanneyt
On Mon, 27 Jan 2003, John Coppens wrote: > On Mon, 27 Jan 2003 14:19:56 +0100 (W. Europe Standard Time) > Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > > > > > > > On Sat, 25 Jan 2003, John Coppens wrote: > > > > > Hi all... > > > > > > I've been needing quick & dirty graphing capability, and

Re: [fpc-pascal]FPC 1.0.6 and open arrays

2003-01-27 Thread Marco van de Voort
> On Sun, Jan 26, 2003 at 12:53:25PM +0100, Marco van de Voort wrote: > > > > > > > procedure OpenArray(var m: array of integer); > > > > This is an open array, and those are supported in both 1.0.x and 1.1. > > > > So these are two different features (even though the syntax is > > similar) >