To create VCL Form - A_bout
 
 
 

       VCL Form, A_bout
 


   Create VCL Form - A_bout

 
Classes used in this Form:
         Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Borland.Vcl.StdCtrls, Borland.Vcl.ExtCtrls,
         System.ComponentModel;

   Type of Controls used in this Form:
          Label, Image, Memo, Panel and 
Button

 

 Create VCL Form A_bout
  1. On the File menu , click  New. and then click VCL Form. New File name Unit1.pas appears. (Form name - Form1)
  2. On the View menu , click  Object Inspector. In Object Inspector modify the following ...

    1- Unit1.pas
      Old New
    File Name: Unit1.pas A_bout,pas





    2. Form1

      Old New
    Caption:
    Name:
    Icon:
    Menu:
    Border Icons
        biMaximize:
    Position:
    Height:
    Width:
    Form1
    Form1
    None
    (none)

    True
    poDefaultPosOnly
    240
    347
    About
    About
    T
    Icon
    (none)

    False

    poDesKtopcenter
    209
    401


    Save this file ...
             On the File menu , click  Save

    The codes  corresponding to the VCL Form created by system ....     File name - Unit1.pas
     

    unit Unit1;

    interface

    uses
    Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
    Dialogs;

    type
    TForm1 = class(TForm)
    private
    { Private declarations }
    public
    { Public declarations }
    end;

    var
    Form1: TForm1;

    implementation

    {$R *.nfm}

    end.


 

 The following controls to ...

 

 The codes  corresponding ...


 

 

Previous
  Home
4