When you first go to Delphi, you will be faced with a blank form that will be created automatically. The form is named Form1. This form is a place of work to make the user interface.
On the left of Form1, seems an Object Inspector window. If no menu appears select the View | Object Inspector, or press the F11 key. In the Object Inspector there are two pages (tabs), namely the Properties and Events. Properties are used to replace property (ownership) of the object / component. While the Events are used to make the procedure that is activated (trigered) via an event.
All properties sorted by alpabetik, and can also be sorted by category. Replace the title of the form by helllo through Caption property, while the form name with the name frmHello through the property Name. Caption is used to store information that appear on the form, while the Name is used as the name of the object.
You now create a blank application form to the standard windows buttons: Minimize, Maximize, and Close. You can resize the form by pulling on the frame form using the mouse (drag = click the left mouse button, hold button and slide to the left / right or up / down). You can move the form by putting the cursor on the form and then moving it (drag).

No comments:
Post a Comment