I remember in VB6 i was able to get the handle of a form of a software that’s currently running, and change it from outside with some API functions.
Is it possible to do with c#? how? The problem is that this software is in a different language. I want to change some of it to English.
I remember in VB6 i was able to get the handle of a form
Share
Try to use
FindWindowandSetWindowTextfrom Win32 API:FindWindowc# signature:SetWindowTextc# signature:and a sample cod: