HEHE
我也想要,顺便发给我一份
[email protected]

解决方案 »

  1.   

    这里这里[email protected]
    我也找了好久啦
      

  2.   

    谢谢!!
    [email protected]
      

  3.   

    here!!!
    [email protected]谢谢!!!
      

  4.   

    我看了一下Delphi提供的帮助内容,内容不多,故翻成了中文,加了点注,仅供您参考(原文也放在一起,供校对):UnitMessagestype 
      TMessage = packed record    Msg: Cardinal;
        case Integer of
          0: (
            WParam: Longint;
            LParam: Longint;
            Result: Longint);
          1: (
            WParamLo: Word;
            WParamHi: Word;
            LParamLo: Word;
            LParamHi: Word;
            ResultLo: Word;
            ResultHi: Word);  end;DescriptionThe TMessage type represents a Windows message in WndProc and other methods.
    The Msg field represents the Windows Message code.
    The WParam field represents the WParam of the message. To access the low and high words of this field, use the WParamLo and WParamHi fields instead.
    The LParam field represents the LParam of the message. To access the low and high words of this field, use the LParamLo and LParamHi fields instead.
    The Result field holds the return value. To access the low and high words of this field, use the ResultLo and ResultHi fields instead.[说明]
    TMessage类型是WndProc和其他方法中的所用的 Windows 消息。
    其中 Msg 域代表 Windows 消息的代码。
    WParam 域代表消息的WParam[注1]。访问此域的低位字和高位字[注2]时, 可分别用(访问)WParamLo域 和 WParamHi域代替。
    LParam域是消息的LParam[注3]。访问此域的低位字和高位字[注4]时, 可分别用(访问)LParamLo域 和 LParamHi域代替。
    Result域用于保存返回值。 要访问此域的低位字和高位字时, 可分别用(访问)ResultLo域 和 ResultHi域来代替。[注1] 这一语句很别扭,但可以理解,相当于中文的“名字域内人是名字”说法一样。Param是参数(parameter)的缩写。
    [注2] WParam为长整型,它有32位,可以拆成2个16位的Word型的字。
    [注3] 这一语句和上面[注1]所指的那句类似。
    [注4] LParam和WParam一样,为32位的长整型,可以拆成2个16位的Word型的字。
      

  5.   

    zzwu(未名):你可能搞错了我的问题了,我问的是那些参数的含义,你翻译的是什么????
      

  6.   

    如果有的话我也要[email protected]
      

  7.   

    我也想要
    [email protected]
      

  8.   

    如果有请E-mail:[email protected]踢前!
      

  9.   

    有的话,也给我发一份
    [email protected]
    多谢!
      

  10.   

    你用delphi打开messages单元看一下不就知道了吗???个人意见仅供参考!!!