<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <p>On 13.10.2016 15:37, Adrian De Armas via Lazarus wrote:<br>
    </p>
    <blockquote
cite="mid:CALOd1Z40j0TaMV_CO-WeOrWpbdJmO-0aCaKaJf0Fx0R7wHGstw@mail.gmail.com"
      type="cite">
      <div dir="ltr"><br>
        <div>
          <div>The second part will introduce:</div>
        </div>
        <div>
          <ul>
            <li>GUI environment. Dropping components on a form and
              arrange them. Changing properties.</li>
          </ul>
        </div>
      </div>
    </blockquote>
    Thanks to RAD, creating a GUI is extremely simple in Lazarus (any of
    the students you described can learn to create a simple GUI  in just
    some minutes). It's a lot more fun to test your code in the GUI you
    created yourself.  <br>
    <br>
    So I would begin the lessons with "creating a simple GUI". <br>
    <br>
    Here you would teach to create a program ("application" in Lazarus
    speak)  that shows a Button. No code at all needs to be written and
    you can start it and happily see your GUI. <br>
    <br>
    Then doubleclick the button in the GUI designer and Lazarus will
    write (and install) an event handler function for you. <br>
    <br>
    Now you can do your first line of code: <br>
    <br>
    Caption := 'Hello World';             <br>
    <br>
    (You even don't need to write Caption := as Lazarus autocompletes
    the code if desired.)<br>
    <br>
    Now press F9 and Lazarus compiles and starts your program and you
    can click the Button and see the result. <br>
    <br>
    I thinks this start will make the students most happy, as they are
    rewarded by instant success. <br>
    <br>
    -Michael<br>
    <br>
  </body>
</html>