N Nikolay Petrov Jun 3, 2005 #1 I need to fill a textbox on another application. Any ideas how to achieve this? tnx
H Herfried K. Wagner [MVP] Jun 3, 2005 #2 Nikolay Petrov said: I need to fill a textbox on another application. Any ideas how to achieve this? Click to expand... P/invoke with 'FindWindow', 'FindWindowEx', 'EnumWindows', 'EnumChildWindows', 'SetWindowText'. Alternatively you can use 'SendKeys.Send'. However, note that both solutions are not very reliable.
Nikolay Petrov said: I need to fill a textbox on another application. Any ideas how to achieve this? Click to expand... P/invoke with 'FindWindow', 'FindWindowEx', 'EnumWindows', 'EnumChildWindows', 'SetWindowText'. Alternatively you can use 'SendKeys.Send'. However, note that both solutions are not very reliable.