Answers

Question and Answer:

  Home  MFC

⟩ How can update edit control data of an executing application from other application?

First, need to find the handle of the Control by using some API like EnumWindows and enumerrating all windows and checking for the text of the window by GetWindowTExt.

Once, handle of the target control has been identified, SendMessage can be used to send appropriate message to the control. like WM_SETTEXT can be sent to change text of window, etc...

 164 views

More Questions for you: