Re: [fpc-devel] fcgi under windows

2009-06-10 Thread Vincent Snijders
ABorka schreef: BTW, there should be some explanation in Lazarus -> File -> New for people about the differences between Application - Program - Custom Program ; I think the description in the Project -> New ... explains the differences clear enough. If not, what are you missing? Vincent

[fpc-devel] fcgi under windows

2009-06-10 Thread ABorka
> Adding fcgi-support was only two hours work. Other systems can be added > as wel. Next on my list is a native web-server using lnet, so that > debugging is even easier. (I'm absolutely sure that posting all messages > about fcl-web not supportinf fcgi was more work then actually adding the > sup

[fpc-devel] indexed property with default value for param?

2009-06-10 Thread Martin
Procedures/Functions can have default values for arguments, so they don't need to be specified if called function GetFoo(Bar: integer; XY: Boolean = True): Integer; Properties (indexed) don't have such a syntax: property Foo[Bar: integer; XY: Boolean = True] read GetFoo; will give an error Ho