home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / Chip_1998-03_cd.bin / zkuste / delphi / komprese / zip / DELZIP12.ZIP / DOC.ZIP / TERMS.TXT < prev    next >
Text File  |  1997-09-28  |  1KB  |  25 lines

  1.  
  2.  
  3.   IDE- Integrated development environment - the Delphi or CBuilder 
  4.        development interface
  5.   VCL - Visual Control - a component that contains executable code
  6.         and data.  They are distributed in a set of files. Once 
  7.         installed into your IDE, they can be dragged from your 
  8.         component palette to one of your forms.
  9.  
  10.   VCLs interface with your code in these 3 ways:
  11.  
  12.   Properties - settings that tell the VCL how to perform it's 
  13.         actions.  These can be set at design time in the Property
  14.         Inspector, or at run time with Pascal/C++ code.
  15.   Methods - these are functions/procedures that must be called
  16.         by your Pascal/C++ code to perform actions.
  17.   Events - these are calls to functions/procedures that you
  18.         define in your code.  These calls execute automatically
  19.         depending on certain key actions occuring.  The function/
  20.         procedure that is called is the "event handler".  For
  21.         example, an "OnMessage" event will call it's associated
  22.         function/procedure (set via the Object Inspector) whenever
  23.         the DLLs want to send the user a message.
  24.  
  25.