大家好:
    我正学习<<从零开始Delphi基础培训教程>>,其中第五章有一个创建启动窗体的小程序。在projiect中:   uses 
         forms,controls
         unit2 in unit2.pas
         .......
  加上Controls是什么意思?
  请各位大侠赐教!

解决方案 »

  1.   

    In Microsoft?Windows? a control is a child window an application uses in conjunction with another window to perform simple input and output (I/O) tasks. Controls are most often used within dialog boxes, but they can also be used in other windows. Controls within dialog boxes provide the user with the means to type text, choose options, and direct a dialog box to complete its action. Controls in other windows provide a variety of services, such as letting the user choose commands, view status, and view and edit text.
      

  2.   

    sorry!i will talk with you this afternoon.
      

  3.   

    usescontrols相当于c中的头文件,里面包含了相关的函数供你根据实际需要调用。
      

  4.   

    pascal中的USES等同于C中的#include