Lazarus is definitely a superb subsitution for delphi after the Net framework transition makes delphi no longer a good choice for programmer. i’ll give some tutorials on Lazarus. This first tutorial will allow you to create a message box on lazarus.

First, enter a button into the form1. Then the button1 will emerge on your Form1.

lazarus tutoria, lazarus, lazarus how to, lazarus ebook, lazarus programming techniques..

Then click 2X on the Button and enter this code:

procedure TForm1.Button1Click(Sender: TObject);
begin
showmessage(’Hellow’);
end;

Compile the program, click the button, you’ll see window like this:

lazarus hello world, lazarus message box, delphi message box, how to create message box on delphi, how to create message box on Lazarus