Re: [fpc-devel] Web language

2006-02-06 Thread VisionForce
Do you know of a better Pascal IDE? The FreePascal IDE is a DOS window and it's really hard to work with. MSEide: http://mypage.bluewin.ch/msegui/ Screenshots: http://freepascal.ru/article//mse/20060109011638/ Note the double slash between article and mse. Martin Thanks! This is what I

Re: [fpc-devel] Web language

2006-02-06 Thread VisionForce
Do you know of a better Pascal IDE? The FreePascal IDE is a DOS window and it's really hard to work with. MSEide: http://mypage.bluewin.ch/msegui/ Screenshots: http://freepascal.ru/article//mse/20060109011638/ Note the double slash between article and mse. Martin Oh, I found Dev-Pascal

Re: [fpc-devel] Web language

2006-02-05 Thread Christian Iversen
On Sunday 05 February 2006 19:25, VisionForce wrote: On Unix platforms, you don't need to do anything. Just use read/write functions to communicate with the world around you. On Windows, you need to define that you are not working with a GUI program, which you do like this:

Re: [fpc-devel] Web language

2006-02-05 Thread VisionForce
On Sunday 05 February 2006 19:25, VisionForce wrote: On Unix platforms, you don't need to do anything. Just use read/write functions to communicate with the world around you. On Windows, you need to define that you are not working with a GUI program, which you do like this:

Re: [fpc-devel] Web language

2006-02-05 Thread Florian Klaempfl
VisionForce wrote: On Sunday 05 February 2006 19:25, VisionForce wrote: On Unix platforms, you don't need to do anything. Just use read/write functions to communicate with the world around you. On Windows, you need to define that you are not working with a GUI program, which

Re: [fpc-devel] Web language

2006-02-05 Thread VisionForce
Which should I use when creating a server-side web language? I'd recommend FreePascal, no doubt about it. It would be perfect for the job. (Not that delphi would be bad, but I'd say it's biggest strength is GUI design) -- Regards, Christian Iversen Do you know of a better Pascal IDE? The

Re: [fpc-devel] Web language

2006-02-05 Thread Florian Klaempfl
VisionForce wrote: Which should I use when creating a server-side web language? I'd recommend FreePascal, no doubt about it. It would be perfect for the job. (Not that delphi would be bad, but I'd say it's biggest strength is GUI design) -- Regards, Christian Iversen Do you know of a

Re: [fpc-devel] Web language

2006-02-05 Thread Martin Schreiber
On Sunday 05 February 2006 21.45, VisionForce wrote: Do you know of a better Pascal IDE? The FreePascal IDE is a DOS window and it's really hard to work with. MSEide: http://mypage.bluewin.ch/msegui/ Screenshots: http://freepascal.ru/article//mse/20060109011638/ Note the double slash between

Re: [fpc-devel] Web language

2006-02-04 Thread Christian Iversen
On Monday 30 January 2006 00:07, VisionForce wrote: Okay, I know this is a beginner questions, but how do I create a Pascal program that only reads the text and sends it through some sort of CGI thing (i.e. doesn't pop up that DOS-style window/shell). I already know how to do the CGI part, I

Re: [fpc-devel] Web language

2006-02-04 Thread L505
Okay, I know this is a beginner questions, but how do I create a Pascal program that only reads the text and sends it through some sort of CGI thing (i.e. doesn't pop up that DOS-style window/shell). I already know how to do the CGI part, I just need to know how to make a program

Re: [fpc-devel] Web language

2006-01-29 Thread VisionForce
- From: Felipe Monteiro de Carvalho [EMAIL PROTECTED] To: VisionForce [EMAIL PROTECTED] Sent: Sunday, January 29, 2006 11:54 AM Subject: Re: [fpc-devel] Web language On 1/27/06, VisionForce [EMAIL PROTECTED] wrote: Thanks Felipe. You are welcome =) This really might be a good experience

Re: [fpc-devel] Web language

2006-01-29 Thread Daniël Mantione
Op Sun, 29 Jan 2006, schreef VisionForce: You gave me this link: http://www.delphibasics.co.uk/ByFunction.asp?Main=Strings Are these methods supported by FreePascal, or would I need to be using Lazarus (Delphi)? Yes they are supported by plain Free Pascal they are in the sysutils unit

Re: [fpc-devel] Web language

2006-01-29 Thread L505
Op Sun, 29 Jan 2006, schreef VisionForce: You gave me this link: http://www.delphibasics.co.uk/ByFunction.asp?Main=Strings Are these methods supported by FreePascal, or would I need to be using Lazarus (Delphi)? And in addition to Daniel's comment, the documentation for these units for FPC

Re: [fpc-devel] Web language

2006-01-29 Thread VisionForce
interface. Thanks, Alex C. Barberi VisionForce http://www.visionforceweb.com - Original Message - From: L505 [EMAIL PROTECTED] To: FPC developers' list fpc-devel@lists.freepascal.org Sent: Sunday, January 29, 2006 3:37 PM Subject: Re: [fpc-devel] Web language Op Sun, 29 Jan 2006

Re: [fpc-devel] Web language

2006-01-29 Thread L505
Okay, I know this is a beginner questions, but how do I create a Pascal program that only reads the text and sends it through some sort of CGI thing (i.e. doesn't pop up that DOS-style window/shell). I already know how to do the CGI part, I just need to know how to make a program without a

Re: [fpc-devel] Web language

2006-01-27 Thread Daniël Mantione
Op Thu, 26 Jan 2006, schreef VisionForce: I'm going to create my own server-side web language, and I was thinking about using .NET. Does anyone here have any good reasons I should use Delphi instead? Is there a place I can go to learn Delphi's string parsing functions? Does Delphi

Re: [fpc-devel] Web language

2006-01-27 Thread Michael Van Canneyt
On Thu, 26 Jan 2006, VisionForce wrote: I'm going to create my own server-side web language, and I was thinking about using .NET. Does anyone here have any good reasons I should use Delphi instead? Is there a place I can go to learn Delphi's string parsing functions? Does Delphi support

[fpc-devel] Web language

2006-01-26 Thread VisionForce
I'm going to create my own server-side web language, and I was thinking about using .NET. Does anyone here have any good reasons I should use Delphi instead? Is there a place I can go to learn Delphi's string parsing functions? Does Delphi support Serialization. What about Polymorphism?