每个过程参数列表中的Sender代表什么?如:procedure TFormLogin.FormCreate(Sender.TObject);

解决方案 »

  1.   

    sender代表发送事件的控件的句柄 或者地址
      

  2.   

    代表发送或引发该事件的对象_____________________
    http://lysoft.7u7.net
      

  3.   

    触发事件的对象,多个对象共用一个过程/函数/方法的时候,用Sender可以区分是谁干的...
      

  4.   

    (Sender:TObject);是一个Tboject类型的变量,所以呢Sender是对象;
      

  5.   

    可以看看帮助文件啊:
    property Sender: TIdEmailAddressItem;DescriptionSender is a TIdEmailAddressItem property used to indicate the person sending the message, if the person is not the message author. Sender contains the value from the RFC message header 'Sender:'.
      

  6.   

    Represents the message sender in a tunnel connection.
    Sender: TSender;DescriptionSender is a TSender instance that is used to represent the sender of a message in a tunnel connection. Sender is used by TIdTunnelMaster.SendMsg to construct the header, CRC, and body of an encapsulated message for the tunnel connection.
      

  7.   

    建议楼主看李维大师的<<Inside VCL>>
    里面有清楚的解答哦,相信你看了之后也进步很大的哦!