当然可以,
问题在于:你首先要知道其它程序的Memo或RichEdit的Handle然后再用GetWindowText(Handle,......................)即可.就是你祝了我新年快乐,我也不见得快乐哦 :-)

解决方案 »

  1.   

    在kingron,mytetang.com上有一本书可以下载叫《Delphi5开发人员指南》上面有一章写的很详细的 
      

  2.   

    在kingron,mytetang.com上有一本书可以下载叫《Delphi5开发人员指南》,打不开:(,
      

  3.   

    如何能知道其它程序的Memo或RichEdit的Handle呢?除了用鼠标,因为我想在我的程序里能够自动连接,显示内容:)
      

  4.   

    可以用一个函数叫什么   ,给你找到了不过,要自己翻译了,很容易懂的The EnumChildWindows function enumerates the child windows that belong to the specified parent window by passing the handle of each child window, in turn, to an application-defined callback function. EnumChildWindows continues until the last child window is enumerated or the callback function returns FALSE. BOOL EnumChildWindows(    HWND hWndParent, // handle to parent window
        WNDENUMPROC lpEnumFunc, // pointer to callback function
        LPARAM lParam  // application-defined value
       );
     ParametershWndParentIdentifies the parent window whose child windows are to be enumerated. lpEnumFuncPoints to an application-defined callback function. For more information about the callback function, see the EnumChildProc callback function. lParamSpecifies a 32-bit, application-defined value to be passed to the callback function.  Return ValuesIf the function succeeds, the return value is nonzero.
    If the function fails, the return value is zero. ResThe EnumChildWindows function does not enumerate top-level windows owned by the specified window, nor does it enumerate any other owned windows. 
    If a child window has created child windows of its own, this function enumerates those windows as well. 
    A child window that is moved or repositioned in the Z order during the enumeration process will be properly enumerated. The function does not enumerate a child window that is destroyed before being enumerated or that is created during the enumeration process. This function is more reliable than calling the GetWindow function in a loop. An application that calls GetWindow to perform this task risks being caught in an infinite loop or referencing a handle to a window that has been destroyed. See AlsoEnumChildProc, EnumThreadWindows, EnumWindows, GetWindow