Re: [Lazarus] Changes to fpWeb...

2017-01-16 Thread Lars via Lazarus
On Mon, January 16, 2017 1:59 pm, Leonardo M. Ramé via Lazarus wrote: >> Indeed, does he mean javascript pop up messages, but initiated by the >> server? when is the message displayed and why would it be displayed? an >> ajax on the current web page loaded, but initiated by the server? > > I

Re: [Lazarus] Teaching Pascal at College

2017-01-16 Thread Lars via Lazarus
On Mon, January 16, 2017 3:19 am, Michael Schnell via Lazarus wrote: > On 15.01.2017 15:30, Martin Vahi via Lazarus wrote: > >> have came to a conclusion that GUI-s are inherently something that >> require "dynamic programming" or the code gets really bloated. >> >> > The nice thing about Lazarus

Re: [Lazarus] Changes to fpWeb...

2017-01-16 Thread Lars via Lazarus
On Mon, January 16, 2017 12:19 pm, Daniel Gaspary via Lazarus wrote: > On Mon, Jan 16, 2017 at 8:12 AM, Michael Schnell via Lazarus > wrote: > >> Does fpweb / weblaz already support status messages from the server to >> the client (or will it some day) to allow for

Re: [Lazarus] Changes to fpWeb...

2017-01-16 Thread Daniel Gaspary via Lazarus
On Mon, Jan 16, 2017 at 8:12 AM, Michael Schnell via Lazarus wrote: > Does fpweb / weblaz already support status messages from the server to the > client (or will it some day) to allow for "Rich Web Applications") ? I don't work very often with web, but I'm

Re: [Lazarus] Teaching Pascal at College

2017-01-16 Thread Martin Schreiber via Lazarus
On Sunday 15 January 2017 15:30:44 Martin Vahi via Lazarus wrote: > > I haven't used Lazarus yet, I need to learn it, > but during the development of my own > JavaScript GUI library I have came to a conclusion > that GUI-s are inherently something that require > "dynamic programming" or the code

Re: [Lazarus] Semicolon checking

2017-01-16 Thread Martin Frb via Lazarus
On 16/01/2017 12:29, DougC via Lazarus wrote: I'm not going to kick you, Mark, as your comments are spot on. What I think wold be very helpful to the FPC community is a warning that is issued when a semi-colon is immediately followed by a "begin" as that is an unusual construct and, as shown

Re: [Lazarus] Teaching Pascal at College

2017-01-16 Thread Michael Schnell via Lazarus
On 15.01.2017 15:30, Martin Vahi via Lazarus wrote: have came to a conclusion that GUI-s are inherently something that require "dynamic programming" or the code gets really bloated. The nice thing about Lazarus "RAD" paradigm is that this is completely hidden (in the library) from application

Re: [Lazarus] Changes to fpWeb...

2017-01-16 Thread Michael Schnell via Lazarus
On 14.01.2017 15:34, Marcos Douglas B. Santos via Lazarus wrote: I'm feeling we've started to go ahead writing complex Web systems Does fpweb / weblaz already support status messages from the server to the client (or will it some day) to allow for "Rich Web Applications") ? Thanks Michael and

Re: [Lazarus] Semicolon checking

2017-01-16 Thread Mark Morgan Lloyd via Lazarus
On 16/01/17 07:30, Lars via Lazarus wrote: On Sun, January 15, 2017 3:30 pm, Vojtěch Čihák via Lazarus wrote:> Hello, has Lazarus (CodeTools) or FPC some checking for empty commands? I> accidentally did this stupid mistake: > if ... then begin>> end else;> begin> ...> exit;>