[Lazarus] unit Dialogs and showmessage

2010-03-31 Thread Bernd
http://lazarus-ccr.sourceforge.net/docs/lcl/dialogs/showmessage.html Source position: dialogs.pp line 510 procedure ShowMessage( const aMsg: String ); there is also an example program: Program LazMessage; Uses Dialogs; begin ShowMessage ('This is a message from Lazarus') end. This

Re: [Lazarus] unit Dialogs and showmessage

2010-03-31 Thread Juha Manninen
Source position: dialogs.pp line 510 procedure ShowMessage( const aMsg: String ); there is also an example program: Program LazMessage; Uses Dialogs; begin ShowMessage ('This is a message from Lazarus') end. This does not compile: project1.lpr(4,16) Error: Identifier not

Re: [Lazarus] unit Dialogs and showmessage

2010-03-31 Thread Andreas Schneider
Am Mittwoch 31 März 2010 19:06:29 schrieb Bernd: http://lazarus-ccr.sourceforge.net/docs/lcl/dialogs/showmessage.html Source position: dialogs.pp line 510 procedure ShowMessage( const aMsg: String ); there is also an example program: Program LazMessage; Uses Dialogs; begin

Re: [Lazarus] unit Dialogs and showmessage

2010-03-31 Thread Mattias Gaertner
On Wed, 31 Mar 2010 19:06:29 +0200 Bernd prof7...@googlemail.com wrote: http://lazarus-ccr.sourceforge.net/docs/lcl/dialogs/showmessage.html Source position: dialogs.pp line 510 procedure ShowMessage( const aMsg: String ); there is also an example program: Program LazMessage;